Fix settable hand

This commit is contained in:
Wuzzy 2019-03-06 07:32:22 +01:00
parent 581f0fa2dd
commit cfac33a94f
2 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,4 @@
minetest.register_on_joinplayer(function(player)
-- Settable hand
player:get_inventory():set_size("hand", 1)
end)

View File

@ -0,0 +1,2 @@
name = mcl_player_init
description = Initialize player gameplay stuff that are neither model nor HUD-related