From d7af303d047b7aea5651f49a5a42c0e19d758842 Mon Sep 17 00:00:00 2001 From: sui-feng-cb <2518179942@qq.com> Date: Thu, 12 Mar 2026 16:13:02 +0800 Subject: [PATCH] Fix: missing argument in skinbox_position_check --- 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 b213118f0..50e767361 100644 --- a/module/shop/shop_general.py +++ b/module/shop/shop_general.py @@ -151,7 +151,7 @@ class GeneralShop_250814(ShopClerk, ShopUI, ShopStatus): # and design constantly changes i.e. equip skin box logger.info(f'Item {item} is considered to be an equip skin box') if self._currency >= item.price: - if not self.skinbox_position_check(): + if not self.skinbox_position_check(item): return False if mode == 'specified': self.config.GeneralShop_BuySkinBoxAmount -= 1