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

Merge pull request #395 from noname94/patch1

Fix: sirens are not sea and cannot be passed through
This commit is contained in:
LmeSzinc
2021-03-28 11:57:34 +08:00
committed by GitHub

View File

@@ -138,7 +138,7 @@ class GridInfo:
@property @property
def is_sea(self): def is_sea(self):
return False if self.is_land or self.is_enemy or self.is_boss else True return False if self.is_land or self.is_enemy or self.is_siren or self.is_boss else True
@property @property
def may_carrier(self): def may_carrier(self):