#304 engineer goldwrench cursors were backwards

This commit is contained in:
Chris Forbes
2010-10-15 17:44:18 +13:00
parent da2d461aa8
commit 6c9527d9dc

View File

@@ -72,7 +72,7 @@ namespace OpenRA.Mods.RA
{
if( !base.CanTargetUnit( self, target, forceAttack, forceMove, ref cursor ) ) return false;
if( target.GetDamageState() > DamageState.Undamaged )
if( target.GetDamageState() == DamageState.Undamaged )
cursor = "goldwrench-blocked";
return true;
}