Fix error with skinsdb
This commit is contained in:
parent
d479f13ce6
commit
a9700417f8
9
init.lua
9
init.lua
|
@ -1917,14 +1917,15 @@ local function get_ctn_content(fs, data, player, xoffset, yoffset, ctn_len, awar
|
||||||
elseif skins_equip then
|
elseif skins_equip then
|
||||||
if __skinsdb then
|
if __skinsdb then
|
||||||
local _skins = skins.get_skinlist_for_player(name)
|
local _skins = skins.get_skinlist_for_player(name)
|
||||||
local t = {}
|
local sks = {}
|
||||||
|
|
||||||
for _, skin in ipairs(_skins) do
|
for _, skin in ipairs(_skins) do
|
||||||
t[#t + 1] = skin.name
|
sks[#sks + 1] = skin.name
|
||||||
end
|
end
|
||||||
|
|
||||||
fs(fmt("dropdown[0,%f;3.55,0.6;skins;%s;%u;true]",
|
sks = concat(sks, ","):gsub(";", "")
|
||||||
yextra + 0.7, concat(t, ","), data.skin_id or 1))
|
|
||||||
|
fs(fmt("dropdown[0,%f;4,0.6;skins;%s;%u;true]", yextra + 0.7, sks, data.skin_id or 1))
|
||||||
else
|
else
|
||||||
fs(fmt("hypertext", 0, yextra + 0.9, ctn_len, 0.6, "",
|
fs(fmt("hypertext", 0, yextra + 0.9, ctn_len, 0.6, "",
|
||||||
"<center><style color=#7bf font=mono>skinsdb</style> not installed</center>"))
|
"<center><style color=#7bf font=mono>skinsdb</style> not installed</center>"))
|
||||||
|
|
Ŝarĝante…
Reference in New Issue