1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-11 20:58:19 +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
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
def may_carrier(self):