[-] Transporters shouldn't run if if they are on mission

This commit is contained in:
cybermind 2015-03-15 23:03:59 +05:00
parent 46f7162c2f
commit 917ef457a3

View file

@ -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);
}