remove spurious allowMovement parameter from ScanAndAttack

This commit is contained in:
Chris Forbes
2012-01-07 20:07:26 +13:00
parent 6315864f84
commit 85293a482e
2 changed files with 3 additions and 3 deletions

View File

@@ -84,7 +84,7 @@ namespace OpenRA.Mods.RA
{
if (--scanTicks <= 0)
{
self.Trait<AutoTarget>().ScanAndAttack(self, true);
self.Trait<AutoTarget>().ScanAndAttack(self);
scanTicks = ScanInterval;
}