This commit is contained in:
Crum
2018-07-17 19:29:58 -05:00
parent 359d83967e
commit 56ce7f120b
+2 -2
View File
@@ -484,8 +484,8 @@ end
local function IsInShapeshiftForm()
for i = 1, GetNumShapeshiftForms() do
local _, _, active = GetShapeshiftFormInfo(i)
if active ~= nil then return true end
local _, name, active = GetShapeshiftFormInfo(i)
if name ~= "Moonkin Form" and active ~= nil then return true end
end
return false
end