Skip to content

Commit

Permalink
Remove old printlines
Browse files Browse the repository at this point in the history
  • Loading branch information
Zoinkwiz committed Oct 25, 2023
1 parent b7f97a6 commit 669718b
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,12 +99,11 @@ public void onGameTick(GameTick event)
public void checkNextTile(int wpsPos)
{
WorldPoint instanceWp = QuestPerspective.getInstanceWorldPointFromReal(client, wps.get(wpsPos));
System.out.println(instanceWp);
if (instanceWp == null)
{
return;
}
System.out.println(client.getLocalPlayer().getWorldLocation());

// If on same tiles as wpsPos
if (client.getLocalPlayer() != null &&
client.getLocalPlayer().getWorldLocation().distanceTo(instanceWp) == 0)
Expand All @@ -130,7 +129,6 @@ public void setupPaths()
current4 == column4
)
{
System.out.println("COLUMN RIP");
return;
}

Expand Down

0 comments on commit 669718b

Please sign in to comment.