remove spurious parameter from ScanAndAttack

This commit is contained in:
Chris Forbes
2011-11-25 17:41:19 +13:00
parent 54e8266e37
commit 0ea9e06c22
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, false);
self.Trait<AutoTarget>().ScanAndAttack(self, true);
scanTicks = ScanInterval;
}