diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/raidsthieving/ChestOverlay.java b/runelite-client/src/main/java/net/runelite/client/plugins/raidsthieving/ChestOverlay.java index c2f037646b..4ac35ebf47 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/raidsthieving/ChestOverlay.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/raidsthieving/ChestOverlay.java @@ -94,13 +94,10 @@ public class ChestOverlay extends Overlay if (chest != null) { - if (!plugin.isBatsFound() && !chest.isEverOpened()) + if (!plugin.isBatsFound() && !chest.isEverOpened() && shouldDrawChest(pos)) { - if (shouldDrawChest(pos)) - { - Color drawColor = new Color(setAlphaComponent(plugin.getGetPotentialBatColor().getRGB(), getChestOpacity(pos))); - drawCircleOnTrap(graphics, chest, drawColor); - } + Color drawColor = new Color(setAlphaComponent(plugin.getGetPotentialBatColor().getRGB(), getChestOpacity(pos))); + drawCircleOnTrap(graphics, chest, drawColor); } if (chest.isPoison()) {