From b87483b531cbbd295ab335531dfa5ac6a4697f8e Mon Sep 17 00:00:00 2001 From: Luna Date: Sat, 26 Oct 2024 22:55:45 +0200 Subject: Fix: Primal Fear Notify backwards logic (#2831) --- .../java/at/hannibal2/skyhanni/features/event/spook/TheGreatSpook.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/at/hannibal2/skyhanni/features/event/spook/TheGreatSpook.kt b/src/main/java/at/hannibal2/skyhanni/features/event/spook/TheGreatSpook.kt index 9125f25a2..22408ebfb 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/event/spook/TheGreatSpook.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/event/spook/TheGreatSpook.kt @@ -91,7 +91,7 @@ object TheGreatSpook { } displayMobCooldown = Renderable.string(mobCooldownString) - if (config.primalFearNotification && mobCooldown.isInFuture()) { + if (config.primalFearNotification && mobCooldown.isInPast()) { SoundUtils.playPlingSound() } -- cgit