From b72c5f13d72374b21a4b6af66b7a3a24f1e7df7a Mon Sep 17 00:00:00 2001 From: Mehmet Ayan Date: Mon, 19 Jan 2015 23:55:55 +0200 Subject: [PATCH] CountEnemiesInRange Thresh changes --- AutoSharpporting/Plugins/Thresh.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AutoSharpporting/Plugins/Thresh.cs b/AutoSharpporting/Plugins/Thresh.cs index 155a3c1..39a7144 100644 --- a/AutoSharpporting/Plugins/Thresh.cs +++ b/AutoSharpporting/Plugins/Thresh.cs @@ -244,7 +244,7 @@ private void EngageFriendLatern() hero => hero.IsAlly && !hero.IsMe && hero.Distance(Player) <= W.Range + 300 && hero.Distance(Player) <= W.Range - 300 && hero.Health / hero.MaxHealth * 100 >= 20 && - Utility.CountEnemysInRange(150) >= 1)) + Utility.CountEnemysInRange(Player,150) >= 1)) { var center = Player.Position; const int points = 36; @@ -335,4 +335,4 @@ private void SafeFriendLatern() } } } -} \ No newline at end of file +}