fix return statement

This commit is contained in:
walterroach 2020-11-16 17:02:04 -06:00
parent 658d808524
commit 253e8a209c

View File

@ -352,7 +352,7 @@ class FrontLine(MissionTarget):
def is_friendly(self, to_player: bool) -> bool: def is_friendly(self, to_player: bool) -> bool:
"""Returns True if the objective is in friendly territory.""" """Returns True if the objective is in friendly territory."""
raise False return False
@property @property
def position(self): def position(self):