Skip to content

Commit

Permalink
NerubarPalace/TheSilkenCourt: Update mote stack count, now goes to 4 …
Browse files Browse the repository at this point in the history
…instead of 3
  • Loading branch information
funkydude committed Oct 17, 2024
1 parent 341e1c6 commit dcb01be
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions NerubarPalace/TheSilkenCourt.lua
Original file line number Diff line number Diff line change
Expand Up @@ -918,10 +918,10 @@ do
local scheduled = nil
function mod:MoteStackMessage(spellId, player)
local spellName = spellId == 460359 and L.void_degeneration or L.burning_rage
self:StackMessage(spellId, "blue", player, stacks, 2, spellName) -- SetOption:460359,460281:
if stacks == 1 then
self:StackMessage(spellId, "blue", player, stacks, 3, spellName) -- SetOption:460359,460281:
if stacks == 2 then
self:PlaySound(spellId, "info") -- SetOption:460359,460281:
elseif stacks == 2 then
elseif stacks == 3 then
self:PlaySound(spellId, "warning") -- SetOption:460359,460281:
end
scheduled = nil
Expand All @@ -930,7 +930,7 @@ do
function mod:MoteStack(args)
if self:Me(args.destGUID) then
stacks = args.amount or 1
if stacks == 3 then
if stacks == 4 then
if scheduled then
self:CancelTimer(scheduled)
end
Expand Down

0 comments on commit dcb01be

Please sign in to comment.