forked from VoxeLibre/VoxeLibre
Compare commits
3 Commits
Author | SHA1 | Date |
---|---|---|
Wuzzy | 235c557798 | |
Wuzzy | 520df43679 | |
Wuzzy | 29449eb8d4 |
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue