From 3d7cc68946e1867b3a10e5d9d3bde59483688a42 Mon Sep 17 00:00:00 2001 From: sui-feng-cb <2518179942@qq.com> Date: Thu, 23 Apr 2026 16:27:13 +0800 Subject: [PATCH] Fix: skinbox position filter should be string --- module/shop/shop_general.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/shop/shop_general.py b/module/shop/shop_general.py index 4133b4e71..4bfec1982 100644 --- a/module/shop/shop_general.py +++ b/module/shop/shop_general.py @@ -33,7 +33,7 @@ class GeneralShop_250814(ShopClerk, ShopUI, ShopStatus): Returns: set[int]: """ - skinbox_filter = self.config.GeneralShop_SkinBoxPositionFilter.strip() + skinbox_filter = str(self.config.GeneralShop_SkinBoxPositionFilter).strip() if not skinbox_filter: return None SKINBOX_POSITION_FILTER.load(skinbox_filter)