diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/features/hud/index.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/features/hud/index.js b/src/features/hud/index.js index 97e8a8e..f4d7e16 100644 --- a/src/features/hud/index.js +++ b/src/features/hud/index.js @@ -652,6 +652,8 @@ class Hud extends Feature { if (potData.infinite) return if (basiclyEqual(potData.time, godPotTime, 1000)) return + if (k === "haste" && potData.level === 1) return + let potName = firstLetterCapital(k.replace(/_/g, " ")) if (this.potsOutAlert.getValue() && potData.time - Date.now() < 60000 && Date.now() - (this.lastPotAlerts[k] || 0) > 2 * 60000) { |