diff options
| author | Luna <me@lunya.dev> | 2024-10-26 22:55:45 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-27 07:55:45 +1100 |
| commit | b87483b531cbbd295ab335531dfa5ac6a4697f8e (patch) | |
| tree | 0e4b843b46fa5b81a49d7adb095bbf7126c39cab | |
| parent | 6b27638c293da2ff318ac5b0f99c7bc2f5ea488d (diff) | |
| download | SkyHanni-b87483b531cbbd295ab335531dfa5ac6a4697f8e.tar.gz SkyHanni-b87483b531cbbd295ab335531dfa5ac6a4697f8e.tar.bz2 SkyHanni-b87483b531cbbd295ab335531dfa5ac6a4697f8e.zip | |
Fix: Primal Fear Notify backwards logic (#2831)
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/event/spook/TheGreatSpook.kt | 2 |
1 files changed, 1 insertions, 1 deletions
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() } |
