diff --git a/Bot/HackerBattle.fs b/Bot/HackerBattle.fs index e428f2c..28d9835 100644 --- a/Bot/HackerBattle.fs +++ b/Bot/HackerBattle.fs @@ -33,7 +33,7 @@ let checkWeaponHasCooldown (weapon : Item) attacker = attacker.Events |> Array.tryFind (fun a -> match a.Type with - | Hacking h -> h.HackId = weapon.Id + | Hacking h -> h.HackId = weapon.Id && h.IsInstigator | Shielding id -> id = weapon.Id | _ -> false) |> function