Fix spaces in realm names

This commit is contained in:
robin 2022-06-28 16:07:39 +02:00
parent b17bd377ac
commit 34bcf9aa9c
20 changed files with 3 additions and 0 deletions

0
Libs/zzAddOn/zzAddOn.lua Normal file → Executable file
View File

0
Libs/zzConfig/zzConfig.lua Normal file → Executable file
View File

0
Libs/zzHelper/zzHelper.lua Normal file → Executable file
View File

0
Libs/zzLDB/zzLDB.lua Normal file → Executable file
View File

0
README.md Normal file → Executable file
View File

0
banker.lua Normal file → Executable file
View File

2
broker.lua Normal file → Executable file
View File

@ -100,6 +100,7 @@ local function OnTooltipShow(tip)
for k,v in pairs(addon['db']['sv']['profileKeys']) do
local n,_,m = strsplit(' ',k,3)
if(n) then
m = string.gsub(m, "%s+", "")
local cr = Helper_Tooltip3(m)
if(m == realm or cr) then
cdbCheck(n, m)
@ -116,6 +117,7 @@ local function OnTooltipShow(tip)
end
for _,v in pairs(child:sortArray(ttlist,db['sortDir'])) do
local n,_,m = strsplit(' ',v,3)
m = string.gsub(m, "%s+", "")
local cr = Helper_Tooltip3(m)
local rm = cr and m or realm
tip:AddDoubleLine(

1
core.lua Normal file → Executable file
View File

@ -55,6 +55,7 @@ function child:GetGold(val)
for k,v in pairs(addon['db']['sv']['profileKeys']) do
local n,_,m = strsplit(' ',k,3)
if(n) then
m = string.gsub(m, "%s+", "")
local cr = child.Helper_Tooltip3(m)
child.cdbCheck(n, m)
local ch = db[m][n]

0
in.tga Normal file → Executable file
View File

0
init.lua Normal file → Executable file
View File

0
license.txt Normal file → Executable file
View File

0
locale_deDE.lua Normal file → Executable file
View File

0
locale_enUS.lua Normal file → Executable file
View File

0
locale_koKR.lua Normal file → Executable file
View File

0
locale_ruRU.lua Normal file → Executable file
View File

0
out.tga Normal file → Executable file
View File

0
pack.xml Normal file → Executable file
View File

0
prefs.lua Normal file → Executable file
View File

0
zz_Money-BCC.toc Normal file → Executable file
View File

0
zz_Money-Classic.toc Normal file → Executable file
View File