Open GoogleCodeExporter opened 8 years ago
I'm getting the same error when people join the guild.
Original comment by WTri...@gmail.com
on 28 Apr 2011 at 9:07
Getting the same error everytime an award goes off or loot is distributed
Original comment by fergusjm...@gmail.com
on 29 Apr 2011 at 8:10
[deleted comment]
Appears to be fixed with a few changes to LibGuildStorage-1.0.lua to account
for the new 16 character limit to the addon message prefixes.
Add to the top after the comments:
local MAJOR_VERSION_SHORT = "LibGuildStorage"
**EDIT Also add after the above addition:
RegisterAddonMessagePrefix(MAJOR_VERSION_SHORT)
Change what should now be line 70 from
"ALERT", MAJOR_VERSION, ...)
to
"ALERT", MAJOR_VERSION_SHORT, ...)
And Change what should now be line 155 from
if prefix ~= MAJOR_VERSION or sender == UnitName("player") then return end
to
if prefix ~= MAJOR_VERSION_SHORT or sender == UnitName("player") then return end
Or, just replace LibGuildStorage-1.0.lua with the attached file
Original comment by kjhi...@gmail.com
on 29 Apr 2011 at 6:44
Attachments:
Original issue reported on code.google.com by
bosmanma...@gmail.com
on 27 Apr 2011 at 9:02