fix: bank money hover error

This commit is contained in:
Vati
2026-04-08 11:54:16 +04:00
parent 50e1c89fa0
commit ecbfbd1272
4 changed files with 27 additions and 5 deletions
+7
View File
@@ -66,6 +66,13 @@ function SharedData:Initialize()
if myAccount then break end
end
-- If we couldn't identify our own account (e.g. first login on this character,
-- before Guda_DB.characters has an entry for us), bail out rather than import
-- every character as "shared". The next login will detect correctly.
if myAccount == nil then
return
end
-- Import characters from other accounts into in-memory table
local importCount = 0
for fullName, charData in pairs(Guda_SharedCharacters) do