Skip to content

Commit 69a75f7

Browse files
committed
Midnight/MagistersTerrace/ArcanotronCustos: Improve ability counts
1 parent 1bce164 commit 69a75f7

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Midnight/MagistersTerrace/ArcanotronCustos.lua

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,9 @@ function mod:RepulsingSlamTimeline(eventInfo)
132132
callback = function()
133133
self:Message(474496, "purple", barText)
134134
self:PlaySound(474496, "alert")
135+
end,
136+
cancelCallback = function()
137+
repulsingSlamCount = repulsingSlamCount - 1
135138
end
136139
}
137140
end
@@ -146,6 +149,9 @@ function mod:ArcaneExpulsionTimeline(eventInfo)
146149
callback = function()
147150
self:Message(1214081, "orange", barText)
148151
self:PlaySound(1214081, "alarm")
152+
end,
153+
cancelCallback = function()
154+
arcaneExpulsionCount = arcaneExpulsionCount - 1
149155
end
150156
}
151157
end
@@ -160,6 +166,9 @@ function mod:EtherealShacklesTimeline(eventInfo)
160166
callback = function()
161167
self:Message(1214032, "yellow", barText)
162168
self:PlaySound(1214032, "info")
169+
end,
170+
cancelCallback = function()
171+
etherealShacklesCount = etherealShacklesCount - 1
163172
end
164173
}
165174
end

0 commit comments

Comments
 (0)