From 8fcd451d340425f4c690f0d23a4b5b4e61324549 Mon Sep 17 00:00:00 2001 From: Ganom Date: Mon, 13 May 2019 01:06:40 -0400 Subject: [PATCH] Remove broken code. --- .../runelite/client/plugins/fightcave/TimersOverlay.java | 7 ------- 1 file changed, 7 deletions(-) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/fightcave/TimersOverlay.java b/runelite-client/src/main/java/net/runelite/client/plugins/fightcave/TimersOverlay.java index 3d7b082842..f609cacab1 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/fightcave/TimersOverlay.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/fightcave/TimersOverlay.java @@ -96,10 +96,7 @@ public class TimersOverlay extends Overlay } final String ticksLeftStr = String.valueOf(ticksLeft); Point canvasPoint = npc.getNpc().getCanvasTextLocation(graphics, ticksLeftStr, 0); - Point test = plugin.getClickPointRanged(); - System.out.println(test); renderTextLocation(graphics, ticksLeftStr, 32, Font.BOLD, tickcolor, canvasPoint); - renderTextLocation(graphics, ticksLeftStr, 20, Font.BOLD, tickcolor, test); } } @@ -120,9 +117,7 @@ public class TimersOverlay extends Overlay } final String ticksLeftStr = String.valueOf(ticksLeft); Point canvasPoint = npc.getNpc().getCanvasTextLocation(graphics, ticksLeftStr, 0); - Point test = plugin.getClickPointMage(); renderTextLocation(graphics, ticksLeftStr, 32, Font.BOLD, tickcolor, canvasPoint); - renderTextLocation(graphics, ticksLeftStr, 20, Font.BOLD, tickcolor, test); } } @@ -143,9 +138,7 @@ public class TimersOverlay extends Overlay } final String ticksLeftStr = String.valueOf(ticksLeft); Point canvasPoint = npc.getNpc().getCanvasTextLocation(graphics, ticksLeftStr, 0); - Point test = plugin.getClickPointMelee(); renderTextLocation(graphics, ticksLeftStr, 32, Font.BOLD, tickcolor, canvasPoint); - renderTextLocation(graphics, ticksLeftStr, 20, Font.BOLD, tickcolor, test); } }