diff -r 19d77932ea91 -r 32a54322d262 hedgewars/uAIMisc.pas --- a/hedgewars/uAIMisc.pas Sat Apr 14 22:40:23 2012 +0400 +++ b/hedgewars/uAIMisc.pas Sat Apr 14 23:19:45 2012 +0400 @@ -48,7 +48,7 @@ procedure freeModule; procedure FillTargets; -procedure FillBonuses(isAfterAttack: boolean; filter: TGearsType = []); +procedure FillBonuses(isAfterAttack: boolean); procedure AwareOfExplosion(x, y, r: LongInt); inline; function RatePlace(Gear: PGear): LongInt; function TestCollExcludingMe(Me: PGear; x, y, r: LongInt): boolean; inline; @@ -126,7 +126,7 @@ TryDo(bonuses.Count <= MAXBONUS, 'Bonuses overflow', true) end; -procedure FillBonuses(isAfterAttack: boolean; filter: TGearsType); +procedure FillBonuses(isAfterAttack: boolean); var Gear: PGear; MyClan: PClan; begin @@ -135,7 +135,6 @@ Gear:= GearsList; while Gear <> nil do begin - if (filter = []) or (Gear^.Kind in filter) then case Gear^.Kind of gtCase: AddBonus(hwRound(Gear^.X), hwRound(Gear^.Y), 33, 25);