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
local guildTotal, guildOnline, guildRemote = GetNumGuildMembers()
local onlineTable, remoteTable = {}, {}
local numOnline = split and guildOnline or guildRemote
if numOnline and guildRemote then
for i = numOnline+1, guildRemote do
remoteTable[i-numOnline] = i
end
for i = 1, numOnline do
onlineTable[i] = i
end
elseif numOnline then
for i = 1, numOnline do
onlineTable[i] = i
end
remoteTable = {}
else
remoteTable = {}
onlineTable = {}
end
local function tableDesc(t)
local desc = "{"
for i = 1, #t do
if i ~= 1 then desc = desc .. ", " end
desc = desc .. (t[i] == nil and "nil" or tostring(t[i]))
end
return desc.."}"
end
This happens when hovering the social button in the titan bar on classic anniversary.
The text was updated successfully, but these errors were encountered: