mirror of
https://gitee.com/sui-feng-cb/AzurLaneAutoScript1
synced 2026-03-09 18:39:04 +08:00
Dev: Fix star requirements in map_extractor
This commit is contained in:
parent
cb062d61d2
commit
e9210b34fe
@ -354,7 +354,7 @@ class MapData:
|
|||||||
if self.MAP_HAS_LAND_BASED:
|
if self.MAP_HAS_LAND_BASED:
|
||||||
lines.append(f' MAP_HAS_LAND_BASED = {self.MAP_HAS_LAND_BASED}')
|
lines.append(f' MAP_HAS_LAND_BASED = {self.MAP_HAS_LAND_BASED}')
|
||||||
for n in range(1, 4):
|
for n in range(1, 4):
|
||||||
if not self.__getattribute__(f'STAR_REQUIRE_{n}'):
|
if self.__getattribute__(f'STAR_REQUIRE_{n}') != n:
|
||||||
lines.append(f' STAR_REQUIRE_{n} = 0')
|
lines.append(f' STAR_REQUIRE_{n} = 0')
|
||||||
lines.append(' # ===== End of generated config =====')
|
lines.append(' # ===== End of generated config =====')
|
||||||
lines.append('')
|
lines.append('')
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user