diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-08-28 13:00:37 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-08-28 13:00:37 +0200 |
commit | 7c78c448f52b59dd55dc37234d8d15175772be1a (patch) | |
tree | 954075af8d0203734ebee8699bd0292277f3c8b2 /src/main/java/at/hannibal2/skyhanni/features/slayer | |
parent | 6eb301f7170bdb67caca797623e8880f71b90791 (diff) | |
download | skyhanni-7c78c448f52b59dd55dc37234d8d15175772be1a.tar.gz skyhanni-7c78c448f52b59dd55dc37234d8d15175772be1a.tar.bz2 skyhanni-7c78c448f52b59dd55dc37234d8d15175772be1a.zip |
Fixed slayer quest detection after death.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/slayer')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/slayer/SlayerQuestWarning.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/slayer/SlayerQuestWarning.kt b/src/main/java/at/hannibal2/skyhanni/features/slayer/SlayerQuestWarning.kt index 6f99abe18..9fc4b9c6e 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/slayer/SlayerQuestWarning.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/slayer/SlayerQuestWarning.kt @@ -36,7 +36,7 @@ class SlayerQuestWarning { if (message == " §r§c§lSLAYER QUEST FAILED!") { needNewQuest("The old slayer quest has failed!") } - if (message == "§eYour unsuccessful quest has been cleared out!") { + if (message == " §r§5§lSLAYER QUEST STARTED!") { needSlayerQuest = false } |