Rename ExtendedDamageState -> DamageState

This commit is contained in:
Paul Chote
2010-07-30 21:40:40 +12:00
parent 028c5b5201
commit 1459ec483c
31 changed files with 70 additions and 70 deletions

2
OpenRA.Mods.RA/AttackBase.cs Executable file → Normal file
View File

@@ -223,7 +223,7 @@ namespace OpenRA.Mods.RA
if (self.Owner.Stances[underCursor.Owner] != Stance.Ally && !forceFire) return null;
// don't allow healing of fully-healed stuff!
if (underCursor.GetExtendedDamageState() == ExtendedDamageState.Undamaged) return null;
if (underCursor.GetDamageState() == DamageState.Undamaged) return null;
}
else
{