show PRESENT status for neutral TGOs

This commit is contained in:
Eclipse/Druss99 2025-10-13 22:37:50 -04:00 committed by Raffson
parent 6c3cbbf0de
commit 624f2a00fd

View File

@ -90,6 +90,8 @@ class TheaterGroundObject(MissionTarget, SidcDescribable, ABC):
@property
def sidc_status(self) -> Status:
if self.control_point.captured.is_neutral:
return Status.PRESENT
if self.is_dead:
return Status.PRESENT_DESTROYED
elif self.dead_units:
@ -575,6 +577,8 @@ class SamGroundObject(IadsGroundObject):
@property
def sidc_status(self) -> Status:
if self.control_point.captured.is_neutral:
return Status.PRESENT
if self.is_dead:
return Status.PRESENT_DESTROYED
elif self.dead_units: