Skip to content

Commit

Permalink
fix realm
Browse files Browse the repository at this point in the history
  • Loading branch information
Waini4 committed Sep 12, 2024
1 parent 6abf896 commit 3627c55
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions DBM-Magtheridon/Magtheridon.lua
Original file line number Diff line number Diff line change
Expand Up @@ -130,12 +130,12 @@ function mod:OnCombatStart(delay)
end

function mod:CHAT_MSG_MONSTER_EMOTE(msg)
if MyRealm == 2 and msg == L.YellPullShort or msg:find(L.YellPullShort) then
if MyRealm == 2 and (msg == L.YellPullShort or msg:find(L.YellPullShort)) then
timerPull:Start()
end
if msg == L.YellPullAcolytes or msg:find(L.YellPullAcolytes) and MyRealm ~= 2 then
end
if MyRealm ~= 2 and (msg == L.YellPullAcolytes or msg:find(L.YellPullAcolytes)) then
timerPull:Start(120)
end
end

end

Expand Down

0 comments on commit 3627c55

Please sign in to comment.