Skip to content

Commit

Permalink
Fix: Primal Fear Notify backwards logic (#2831)
Browse files Browse the repository at this point in the history
  • Loading branch information
lunaynx authored Oct 26, 2024
1 parent 6b27638 commit b87483b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ object TheGreatSpook {
}
displayMobCooldown = Renderable.string(mobCooldownString)

if (config.primalFearNotification && mobCooldown.isInFuture()) {
if (config.primalFearNotification && mobCooldown.isInPast()) {
SoundUtils.playPlingSound()
}

Expand Down

0 comments on commit b87483b

Please sign in to comment.