From 8a2bad0728cdcf0660ea319d3d11070e5449d660 Mon Sep 17 00:00:00 2001 From: icyredstar <50961636+icyredstar@users.noreply.github.com> Date: Tue, 2 Jul 2019 16:33:15 -0400 Subject: [PATCH] Update BarrowsBrotherSlainOverlay.java MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Accurately apply red color to X (brothers not killed yet) and green color to ✓ (brother has been killed) --- .../client/plugins/barrows/BarrowsBrotherSlainOverlay.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/barrows/BarrowsBrotherSlainOverlay.java b/runelite-client/src/main/java/net/runelite/client/plugins/barrows/BarrowsBrotherSlainOverlay.java index 58760d7c96..a72d2dfccf 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/barrows/BarrowsBrotherSlainOverlay.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/barrows/BarrowsBrotherSlainOverlay.java @@ -84,7 +84,7 @@ public class BarrowsBrotherSlainOverlay extends Overlay { final boolean brotherSlain = client.getVar(brother.getKilledVarbit()) > 0; String slain = brotherSlain ? "\u2713" : "\u2717"; - tableComponent.addRow(brother.getName(), ColorUtil.prependColorTag(slain, brotherSlain ? Color.RED : Color.GREEN)); + tableComponent.addRow(brother.getName(), ColorUtil.prependColorTag(slain, brotherSlain ? Color.GREEN : Color.RED)); } float rewardPercent = client.getVar(Varbits.BARROWS_REWARD_POTENTIAL) / 10.0f;