[-] Transporters shouldn't run if if they are on mission
This commit is contained in:
parent
46f7162c2f
commit
917ef457a3
1 changed files with 1 additions and 1 deletions
|
@ -2746,7 +2746,7 @@ void HitUnit(CUnit *attacker, CUnit &target, int damage, const Missile *missile)
|
|||
}
|
||||
|
||||
// Can't attack run away.
|
||||
if (!target.IsAgressive() && target.CanMove() && target.CurrentAction() == UnitActionStill) {
|
||||
if (!target.IsAgressive() && target.CanMove() && target.CurrentAction() == UnitActionStill && !target.BoardCount) {
|
||||
HitUnit_RunAway(target, *attacker);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue