Merge pull request #3398 from chrisforbes/panic-heal

Fix #3393: Prevent ScaredyCat from reacting to healing
This commit is contained in:
Curtis Shmyr
2013-06-12 15:06:27 -07:00

View File

@@ -63,7 +63,8 @@ namespace OpenRA.Mods.RA
public void Damaged(Actor self, AttackInfo e)
{
Panic();
if (e.Damage > 0)
Panic();
}
public void Attacking(Actor self, Target target)