Compare commits

...

3 Commits
master ... 0.48

Author SHA1 Message Date
Wuzzy 235c557798 Version 0.48.1 2019-03-07 02:47:56 +01:00
Wuzzy 520df43679 Fix mcl_meshhand race condition 2019-03-07 02:46:21 +01:00
Wuzzy 29449eb8d4 Remove console spam from mcl_loot 2019-03-07 02:46:02 +01:00
3 changed files with 1 additions and 9 deletions

View File

@ -2,7 +2,7 @@
An unofficial Minecraft-like game for Minetest. Forked from MineClone by daredevils.
Developed by Wuzzy and contributors. Not developed or endorsed by Mojang AB.
Version: 0.48.0
Version: 0.48.1
### Gameplay
You start in a randomly-generated world made entirely of cubes. You can explore

View File

@ -114,9 +114,6 @@ local function get_random_slots(max_slot)
table.insert(slots_out, slots[r])
table.remove(slots, r)
end
for s=1, #slots_out do
print(slots_out[s])
end
return slots_out
end

View File

@ -17,11 +17,6 @@ if has_mcl_skins == true then
})
end
--change the player's hand to their skin
minetest.register_on_joinplayer(function(player)
local skin = mcl_skins.skins[player:get_player_name()]
player:get_inventory():set_stack("hand", 1, "mcl_meshhand:"..skin)
end)
mcl_skins.register_on_set_skin(function(player, skin)
local name = player:get_player_name()
player:get_inventory():set_stack("hand", 1, "mcl_meshhand:"..skin)