From 3d1a00fe2afa39b46232fa6de8a1e84b675d6a43 Mon Sep 17 00:00:00 2001 From: Damen Date: Fri, 29 Jun 2018 02:24:55 -0400 Subject: [PATCH] Prevent cannonball count conflicting with health bars (#2857) Adjust cannonball count height to not conflict with player health bar when standing directly on cannon. Corrected to sit between player health bar and hit splats. --- .../java/net/runelite/client/plugins/cannon/CannonOverlay.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/cannon/CannonOverlay.java b/runelite-client/src/main/java/net/runelite/client/plugins/cannon/CannonOverlay.java index 7eace888d7..ebee009d3b 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/cannon/CannonOverlay.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/cannon/CannonOverlay.java @@ -81,7 +81,7 @@ class CannonOverlay extends Overlay Point cannonLoc = Perspective.getCanvasTextLocation(client, graphics, cannonPoint, - String.valueOf(plugin.getCballsLeft()), 200); + String.valueOf(plugin.getCballsLeft()), 150); if (cannonLoc != null) {