Skip to content

Commit

Permalink
Merge pull request LeagueSharp#253 from xKurisu/master
Browse files Browse the repository at this point in the history
Utils.TickCount to GameTimeTickCount
ehmehe committed Jun 3, 2015
2 parents 49e9c76 + 2a1abf0 commit 7ae5edc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Utility.cs
Original file line number Diff line number Diff line change
@@ -610,7 +610,7 @@ private static void GameOnOnGameUpdate(EventArgs args)
{
for (var i = ActionList.Count - 1; i >= 0; i--)
{
if (ActionList[i].Time <= Utils.TickCount)
if (ActionList[i].Time <= Utils.GameTimeTickCount)
{
try
{
@@ -643,7 +643,7 @@ public struct Action

public Action(int time, Callback callback)
{
Time = time + Utils.TickCount;
Time = time + Utils.GameTimeTickCount;
CallbackObject = callback;
}
}

0 comments on commit 7ae5edc

Please sign in to comment.