forked from VoxeLibre/VoxeLibre
Remove mcl_player_init
This commit is contained in:
parent
80225bb8df
commit
bef204f548
|
@ -91,6 +91,10 @@ else
|
||||||
minetest.register_on_joinplayer(mcl_meshhand.update_player)
|
minetest.register_on_joinplayer(mcl_meshhand.update_player)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
minetest.register_on_joinplayer(function(player)
|
||||||
|
player:get_inventory():set_size("hand", 1)
|
||||||
|
end)
|
||||||
|
|
||||||
-- This is needed to deal damage when punching mobs
|
-- This is needed to deal damage when punching mobs
|
||||||
-- with random items in hand in survival mode
|
-- with random items in hand in survival mode
|
||||||
minetest.override_item("", {
|
minetest.override_item("", {
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
minetest.register_on_joinplayer(function(player)
|
|
||||||
-- Settable hand
|
|
||||||
player:get_inventory():set_size("hand", 1)
|
|
||||||
end)
|
|
|
@ -1,3 +0,0 @@
|
||||||
name = mcl_player_init
|
|
||||||
author = Wuzzy
|
|
||||||
description = Initialize player gameplay stuff that are neither model nor HUD-related
|
|
Loading…
Reference in New Issue