1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-31 15:50:34 +08:00

Upd: rename transport items using in-game names

This commit is contained in:
2025-10-19 17:23:40 +08:00
parent 841d5d91ee
commit e231483c92
14 changed files with 87 additions and 87 deletions

View File

@@ -210,18 +210,18 @@ class IslandTransportRun(IslandUI):
@cached_property
def blacklist(self):
blacklist = []
if not self.config.IslandTransport_SubmitChicken:
blacklist.append(TEMPLATE_CHICKEN)
if not self.config.IslandTransport_SubmitPoultry:
blacklist.append(TEMPLATE_POULTRY)
if not self.config.IslandTransport_SubmitMilk:
blacklist.append(TEMPLATE_MILK)
if not self.config.IslandTransport_SubmitPork:
blacklist.append(TEMPLATE_PORK)
if not self.config.IslandTransport_SubmitLinen:
blacklist.append(TEMPLATE_LINEN)
if not self.config.IslandTransport_SubmitStrawberry:
blacklist.append(TEMPLATE_STRAWBERRY)
if not self.config.IslandTransport_SubmitFreshMeat:
blacklist.append(TEMPLATE_FRESH_MEAT)
if not self.config.IslandTransport_SubmitFlex:
blacklist.append(TEMPLATE_FLEX)
if not self.config.IslandTransport_SubmitCotton:
blacklist.append(TEMPLATE_COTTON)
if not self.config.IslandTransport_SubmitStrawberries:
blacklist.append(TEMPLATE_STRAWBERRIES)
if not self.config.IslandTransport_SubmitOnion:
blacklist.append(TEMPLATE_ONION)
return blacklist