1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-12 05:08:19 +08:00

Fix: Resolve merge conflicts; migrate equip skin box price check to appropriate custom_check_item variant

This commit is contained in:
nEEtdo0d
2021-12-29 20:55:46 -05:00
22 changed files with 571 additions and 27 deletions

View File

@@ -68,6 +68,7 @@ class GeneralShop(ShopBase):
if self.config.GeneralShop_BuySkinBox:
if (not item.is_known_item()) and item.amount == 1 and item.cost == 'Coins' and item.price == 7000:
logger.info(f'Item {item} is considered to be an equip skin box')
return True
if self._shop_gold_coins >= item.price:
return True
return False