Skip to content

Commit

Permalink
Update Program.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
werdbrian committed Mar 4, 2016
1 parent 786a65e commit 39810c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Leblanc/Leblanc/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -579,8 +579,8 @@ private static void LaneClear()
ObjectManager.Player.ServerPosition, Q.Range, MinionTypes.All, MinionTeam.NotAlly).Select(m => m.ServerPosition.To2D()).ToList();
var minionPrediction = MinionManager.GetBestCircularFarmLocation(minionsQ, 200, W.Range+200);
var castPosition = minionPrediction.Position.To3D();
var EnoughHits = minionPrediction.MinionsHit < 4;
if (EnoughHits)
var EnoughHits = minionPrediction.MinionsHit > 2;
if (EnoughHits && && Player.Spellbook.GetSpell(SpellSlot.W).Name.ToLower() == "leblancslide")
{
W.Cast(castPosition);
}
Expand Down

0 comments on commit 39810c9

Please sign in to comment.