Skip to content

Commit

Permalink
#26 - change syncname since some forks send the version number
Browse files Browse the repository at this point in the history
  • Loading branch information
xorann committed Apr 11, 2018
1 parent 32a9933 commit a90de6d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Raids/BWL/Razorgore/Core.lua
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ local icon = module.icon
module.syncName = {
egg = "RazorgoreEgg",
eggStart = "RazorgoreEggStart",
orb = "RazorgoreOrbStart_", -- 19 characters
orbOver = "RazorgoreOrbStop_",
orb = "RazorgoreOrbStart2_", -- 20 characters
orbOver = "RazorgoreOrbStop2_",
volley = "RazorgoreVolleyCast",
phase2 = "RazorgorePhaseTwo",
}
Expand Down Expand Up @@ -70,7 +70,7 @@ function module:BigWigs_RecvSync(sync, rest, nick)
elseif sync == syncName.eggStart then
self:DestroyingEgg()
elseif string.find(sync, syncName.orb) then
local name = string.sub(sync, 19)
local name = string.sub(sync, 20)
self:OrbStart(name)
elseif string.find(sync, syncName.orbOver) then
self:OrbEnd()
Expand Down

0 comments on commit a90de6d

Please sign in to comment.