aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-11-09 20:14:02 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-11-09 20:14:02 +0100
commit6157bc46e3355cf353767572c46bba3fb6f8d02f (patch)
tree968c05c27418e291031710ac9597a901212dee2c /src/main/java/at/hannibal2
parent5eabee4e4091f60cc8da3a38ee33eed9124e06fd (diff)
downloadskyhanni-6157bc46e3355cf353767572c46bba3fb6f8d02f.tar.gz
skyhanni-6157bc46e3355cf353767572c46bba3fb6f8d02f.tar.bz2
skyhanni-6157bc46e3355cf353767572c46bba3fb6f8d02f.zip
changed color of "Slayer boss soon!" from red to yellow.
Diffstat (limited to 'src/main/java/at/hannibal2')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/slayer/SlayerBossSpawnSoon.kt4
1 files changed, 2 insertions, 2 deletions
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
+}