From 784ca3f9d7e3efc2b5e7dfab123a1cd635ccc4da Mon Sep 17 00:00:00 2001 From: Andrew Scott Date: Mon, 23 Sep 2024 19:51:41 -0700 Subject: [PATCH] fix: #2230 - Raised max value of Maelstrom condition. --- CHANGELOG.md | 1 + Components/Core/Conditions/Categories/Resources.lua | 2 +- Options/CHANGELOG.lua | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f92ec47a..22bc32f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ ## v11.0.10 * Fix: #2228 - Cooldown bling appearing on groups with 0% opacity. +* Fix: #2230 - Raised max value of Maelstrom condition. * Fix: #2231 - Some abilities not reflecting out-of-power state correctly. * Fix: #2232 - Spell Queued condition not working on retail WoW. diff --git a/Components/Core/Conditions/Categories/Resources.lua b/Components/Core/Conditions/Categories/Resources.lua index ce5c0bce..2c60002a 100644 --- a/Components/Core/Conditions/Categories/Resources.lua +++ b/Components/Core/Conditions/Categories/Resources.lua @@ -554,7 +554,7 @@ if TMW.isRetail then ConditionCategory:RegisterCondition(93 - offset, "MAELSTROM", { text = MAELSTROM_POWER, min = 0, - max = 150, + max = 200, icon = "Interface\\Icons\\spell_shaman_maelstromweapon", tcoords = CNDT.COMMON.standardtcoords, funcstr = ([[UnitPower("player", %d) c.Operator c.Level]]):format(Enum.PowerType.Maelstrom), diff --git a/Options/CHANGELOG.lua b/Options/CHANGELOG.lua index 7151fd3a..4faaeb2a 100644 --- a/Options/CHANGELOG.lua +++ b/Options/CHANGELOG.lua @@ -5,6 +5,7 @@ TMW.CHANGELOG_LASTVER="10.0.0" TMW.CHANGELOG = [==[ ## v11.0.10 * Fix: #2228 - Cooldown bling appearing on groups with 0% opacity. +* Fix: #2230 - Raised max value of Maelstrom condition. * Fix: #2231 - Some abilities not reflecting out-of-power state correctly. * Fix: #2232 - Spell Queued condition not working on retail WoW.