diff --git a/mods/wardrobe/hands.lua b/mods/wardrobe/hands.lua index e9ee218..e75390d 100644 --- a/mods/wardrobe/hands.lua +++ b/mods/wardrobe/hands.lua @@ -140,6 +140,8 @@ minetest.register_on_joinplayer(function(player) player:get_inventory():set_stack("hand", 1, "newhand:_default_") -- normally we get a default hand if we don't have a custom appearance yet + if wardrobe.hand_textures:get_string("skin") == "" or wardrobe.hand_textures:get_string("c") == "" then return end + for k, v in pairs(player_names) do -- iterate over the table to make sure the joining player has a skin if v == player:get_player_name() then -- and if they do -- we get to give them their custom arm. diff --git a/mods/wardrobe/init.lua b/mods/wardrobe/init.lua index 456faaf..e18eb78 100644 --- a/mods/wardrobe/init.lua +++ b/mods/wardrobe/init.lua @@ -1115,8 +1115,6 @@ function wardrobe.load_user_data(player) print ("[Wardrobe] " .. pname .. " has a 64x64 type skin!") end - - else wardrobe.player_skin_size[pname] = 64 -- we use this for the hands module diff --git a/mods/wardrobe/textures/wardrobe_player_Jordach.png b/mods/wardrobe/textures/wardrobe_player_Jordach.png index 4e4434b..8f35514 100644 Binary files a/mods/wardrobe/textures/wardrobe_player_Jordach.png and b/mods/wardrobe/textures/wardrobe_player_Jordach.png differ diff --git a/mods/wardrobe/textures/wardrobe_player_virtuoel.png b/mods/wardrobe/textures/wardrobe_player_virtuoel.png deleted file mode 100644 index 9ad307e..0000000 Binary files a/mods/wardrobe/textures/wardrobe_player_virtuoel.png and /dev/null differ