use spacebar to go to last attack event

This commit is contained in:
Chris Forbes
2011-12-31 10:36:53 +13:00
parent 85eeb8b819
commit 0d25b6b5c9
2 changed files with 24 additions and 3 deletions

View File

@@ -27,8 +27,8 @@ namespace OpenRA.Mods.RA
{
BaseAttackNotifierInfo info;
public int lastAttackTime;
public int2 lastAttackLocation;
public int lastAttackTime = -1;
public float2 lastAttackLocation;
public BaseAttackNotifier(BaseAttackNotifierInfo info) { this.info = info; }
@@ -45,7 +45,7 @@ namespace OpenRA.Mods.RA
if (self.World.FrameNumber - lastAttackTime > info.NotifyInterval * 25)
Sound.PlayToPlayer(self.Owner, info.Audio);
lastAttackLocation = self.Location;
lastAttackLocation = self.CenterLocation / Game.CellSize;
lastAttackTime = self.World.FrameNumber;
}
}