Weapon Enchants are broken in 10.1
RShadowhand opened this issue · 1 comments
I've made a patch that seems to be working:
In Main.lua
, replace these two lines
if ttInfo.lines[i].args[2] then
local text = ttInfo.lines[i].args[2].stringVal
with these:
if ttInfo.lines[i].leftText then
local text = ttInfo.lines[i].leftText.stringVal
Line numbers 169 and 170.