From 6157bc46e3355cf353767572c46bba3fb6f8d02f Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Thu, 9 Nov 2023 20:14:02 +0100 Subject: changed color of "Slayer boss soon!" from red to yellow. --- .../java/at/hannibal2/skyhanni/features/slayer/SlayerBossSpawnSoon.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main/java') diff --git a/src/main/java/at/hannibal2/skyhanni/features/slayer/SlayerBossSpawnSoon.kt b/src/main/java/at/hannibal2/skyhanni/features/slayer/SlayerBossSpawnSoon.kt index 7c71632e2..e7b7fe0e5 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/slayer/SlayerBossSpawnSoon.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/slayer/SlayerBossSpawnSoon.kt @@ -29,7 +29,7 @@ class SlayerBossSpawnSoon { if (completion > config.percent / 100.0) { if (!warned || (config.repeat && completion != lastCompletion)) { SoundUtils.playBeepSound() - LorenzUtils.sendTitle("§cSlayer boss soon!", 2.seconds) + LorenzUtils.sendTitle("§eSlayer boss soon!", 2.seconds) warned = true } } else { @@ -39,4 +39,4 @@ class SlayerBossSpawnSoon { } fun isEnabled() = config.enabled && SlayerAPI.hasActiveSlayerQuest() -} \ No newline at end of file +} -- cgit