You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am getting a lua error that I was getting before in previous versions and fixed in my copy.
Interface/AddOns/EMA/Core/Team.lua:1818: attempt to concatenate local 'displayCharacterRleam' (a nil value)
For that one, I just did a quick fix by changing line 1818
displayCharacterRleam = displayCharacterRleam..L[" "]..L["NOT_LINKED"]
displayCharacterRleam = (displayCharacterRleam or 'UNKNOWN')..L[" "]..L["NOT_LINKED"]
The text was updated successfully, but these errors were encountered:
fireymerlin
changed the title
lua error: Team.lua:1818: attempt to concatenate local 'displayCharacterRleam' (a nil value)
Classic_Era: lua error: Team.lua:1818: attempt to concatenate local 'displayCharacterRleam' (a nil value)
Mar 23, 2024
I am getting a lua error that I was getting before in previous versions and fixed in my copy.
Interface/AddOns/EMA/Core/Team.lua:1818: attempt to concatenate local 'displayCharacterRleam' (a nil value)
For that one, I just did a quick fix by changing line 1818
displayCharacterRleam = displayCharacterRleam..L[" "]..L["NOT_LINKED"]
displayCharacterRleam = (displayCharacterRleam or 'UNKNOWN')..L[" "]..L["NOT_LINKED"]
The text was updated successfully, but these errors were encountered: