forked from VoxeLibre/VoxeLibre
Skin button cycle skins if low skin count
This commit is contained in:
parent
c84656f85a
commit
35bafb2aeb
|
@ -53,6 +53,18 @@ while true do
|
||||||
id = id + 1
|
id = id + 1
|
||||||
end
|
end
|
||||||
|
|
||||||
|
mcl_skins.cycle_skin = function(player)
|
||||||
|
local skin_id = tonumber(player:get_attribute("mcl_skins:skin_id"))
|
||||||
|
if not skin_id then
|
||||||
|
skin_id = 0
|
||||||
|
end
|
||||||
|
skin_id = skin_id + 1
|
||||||
|
if skin_id > mcl_skins.skin_count then
|
||||||
|
skin_id = 0
|
||||||
|
end
|
||||||
|
mcl_skins.set_player_skin(player, skin_id)
|
||||||
|
end
|
||||||
|
|
||||||
mcl_skins.set_player_skin = function(player, skin_id)
|
mcl_skins.set_player_skin = function(player, skin_id)
|
||||||
if not player then
|
if not player then
|
||||||
return false
|
return false
|
||||||
|
@ -178,7 +190,13 @@ minetest.register_chatcommand("setskin", {
|
||||||
|
|
||||||
minetest.register_on_player_receive_fields(function(player, formname, fields)
|
minetest.register_on_player_receive_fields(function(player, formname, fields)
|
||||||
if fields.__mcl_skins then
|
if fields.__mcl_skins then
|
||||||
mcl_skins.show_formspec(player:get_player_name())
|
if mcl_skins.skin_count <= 6 then
|
||||||
|
-- Change skin immediately if there are not many skins
|
||||||
|
mcl_skins.cycle_skin(player)
|
||||||
|
else
|
||||||
|
-- Show skin selection formspec otherwise
|
||||||
|
mcl_skins.show_formspec(player:get_player_name())
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue