Skip to content

Commit

Permalink
fix: #2230 - Raised max value of Maelstrom condition.
Browse files Browse the repository at this point in the history
  • Loading branch information
ascott18 committed Sep 24, 2024
1 parent db46526 commit 784ca3f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
2 changes: 1 addition & 1 deletion Components/Core/Conditions/Categories/Resources.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down
1 change: 1 addition & 0 deletions Options/CHANGELOG.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 784ca3f

Please sign in to comment.