Lua error in v2.0.3 about srtsplit
XScorpion2 opened this issue ยท 1 comments
Lines 1357 through 1359 of comm.lua:
if curClass == "WARRIOR" then
local a,b,c = strsplit("/")
if strfind(message, "Protection") or tonumber(strsub(c, 1, -2)) > 15 then
strsplit("/") is not valid use of strsplit, fixed this by changing to code to match the "PALADIN" section:
if curClass == "WARRIOR" then
if strfind(message, "Protection") then