Skip to content

Commit fe2f2ed

Browse files
committed
Fix spurious guild roster requests on classic era due to wrong returns order
1 parent 8525340 commit fe2f2ed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tracking/GuildCache.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@ function SyndicatorGuildCacheMixin:GetGuildKey()
8383

8484
local gm, gmGUID
8585
for i = 1, GetNumGuildMembers() do
86-
local name, _, rankIndex, _, _, _, _, _, _, _, _, _, _, _, _, _, _, guid = GetGuildRosterInfo(i)
86+
local name, _, rankIndex, _, _, _, _, _, _, _, _, _, _, _, _, _, guid = GetGuildRosterInfo(i)
8787
if rankIndex == 0 then
88-
gm, gmGUID = name, gmGUID
88+
gm, gmGUID = name, guid
8989
end
9090
end
9191

0 commit comments

Comments
 (0)