Add support for simple skins by TenPlus1

This commit is contained in:
stujones11 2014-09-12 18:30:09 +01:00
parent 36688c74a8
commit 4415e2b33b
1 changed files with 5 additions and 0 deletions

View File

@ -376,6 +376,11 @@ minetest.register_on_joinplayer(function(player)
if skin and skins.get_type(skin) == skins.type.MODEL then
armor.textures[name].skin = skin..".png"
end
elseif minetest.get_modpath("simple_skins") then
local skin = skins.skins[name]
if skin then
armor.textures[name].skin = skin..".png"
end
elseif minetest.get_modpath("u_skins") then
local skin = u_skins.u_skins[name]
if skin and u_skins.get_type(skin) == u_skins.type.MODEL then