From 076733d8ad73a2cfccb910e0bb1dc71c00d8ded1 Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Tue, 8 Feb 2022 18:29:09 -0500 Subject: Click on the hud to send command (#78) * Click on the hud to run the command * i forgor how much xp goes into slayer level 9 * Fix? I can't test it * fix 2 * move pet inv display tooltip to the left of the inventory to avoid conflicts Co-authored-by: nopothegamer <40329022+nopothegamer@users.noreply.github.com> Co-authored-by: Lulonaut <67191924+Lulonaut@users.noreply.github.com> Co-authored-by: Lulonaut --- .../io/github/moulberry/notenoughupdates/overlays/SlayerOverlay.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/java/io/github/moulberry/notenoughupdates/overlays/SlayerOverlay.java') diff --git a/src/main/java/io/github/moulberry/notenoughupdates/overlays/SlayerOverlay.java b/src/main/java/io/github/moulberry/notenoughupdates/overlays/SlayerOverlay.java index a7bb0b66..2a62d803 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/overlays/SlayerOverlay.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/overlays/SlayerOverlay.java @@ -175,7 +175,7 @@ public class SlayerOverlay extends TextOverlay { if (xpPerBoss != 0 && slayerIntXP > 0) { lineMap.put(5, EnumChatFormatting.YELLOW + "Bosses till next Lvl: " + EnumChatFormatting.LIGHT_PURPLE + - (bossesUntilNextLevel > 1000 ? "?" : bossesUntilNextLevel)); + (bossesUntilNextLevel > 2000 ? "?" : bossesUntilNextLevel)); } if (timeSinceLastBoss > 0 && timeSinceLastBoss2 > 0) { -- cgit