diff --git a/resources/ui/map/map.js b/resources/ui/map/map.js index 1b421520..3e1056b2 100644 --- a/resources/ui/map/map.js +++ b/resources/ui/map/map.js @@ -403,10 +403,10 @@ class TheaterGroundObject { icon() { let state; - if (this.tgo.category == "aa" && !this.samIsThreat()) { - state = UnitState.Damaged; - } else if (this.tgo.dead) { + if (this.tgo.dead) { state = UnitState.Destroyed; + } else if (this.tgo.category == "aa" && !this.samIsThreat()) { + state = UnitState.Damaged; } else { state = UnitState.Alive; }