From 0d1d8d3181ecb1e79f97683a15a425c7e391dbe3 Mon Sep 17 00:00:00 2001 From: Seth Date: Mon, 19 Mar 2018 17:56:10 -0500 Subject: [PATCH] prayer flick overlay: remove background arc Removed the white background on the the prayer orb when overlay was on which made it hard to tell if quick prayers were on --- .../runelite/client/plugins/prayflick/PrayerFlickOverlay.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/prayflick/PrayerFlickOverlay.java b/runelite-client/src/main/java/net/runelite/client/plugins/prayflick/PrayerFlickOverlay.java index d47a5e0d3f..ff9c61e442 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/prayflick/PrayerFlickOverlay.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/prayflick/PrayerFlickOverlay.java @@ -99,9 +99,6 @@ public class PrayerFlickOverlay extends Overlay int yOffset = (orbInnerHeight / 2) - (indicatorHeight / 2); - graphics.setColor(new Color(255, 255, 255, 100)); - graphics.fillArc(orbInnerX, orbInnerY, orbInnerWidth, orbInnerHeight, 0, 360); - graphics.setColor(Color.cyan); graphics.fillRect(orbInnerX + xOffset, orbInnerY + yOffset, 1, indicatorHeight);