mirror of
https://gitee.com/sui-feng-cb/AzurLaneAutoScript1
synced 2026-03-12 06:18:21 +08:00
Fix: Default output for ShipScanner should be enabled
This commit is contained in:
@@ -330,8 +330,8 @@ class ShipScanner(Scanner):
|
||||
|
||||
return candidates
|
||||
|
||||
def scan(self, image, cached=False, output=False) -> Union[List, None]:
|
||||
return [ship for ship in super().scan(image, cached, output=True)
|
||||
def scan(self, image, cached=False, output=True) -> Union[List, None]:
|
||||
return [ship for ship in super().scan(image, cached, output)
|
||||
if ship.satisfy_limitation(self.limitaion)]
|
||||
|
||||
def move(self, vector) -> None:
|
||||
|
||||
Reference in New Issue
Block a user