diff options
Diffstat (limited to 'data')
-rw-r--r-- | data/mods/give_initial_stuff/init.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/data/mods/give_initial_stuff/init.lua b/data/mods/give_initial_stuff/init.lua new file mode 100644 index 000000000..bc99e2149 --- /dev/null +++ b/data/mods/give_initial_stuff/init.lua @@ -0,0 +1,12 @@ +minetest.register_on_newplayer(function(player) + print("on_newplayer") + if minetest.setting_getbool("give_initial_stuff") then + print("giving give_initial_stuff to player") + player:add_to_inventory('ToolItem "SteelPick" 0') + player:add_to_inventory('NodeItem "torch" 99') + player:add_to_inventory('ToolItem "SteelAxe" 0') + player:add_to_inventory('ToolItem "SteelShovel" 0') + player:add_to_inventory('NodeItem "cobble" 99') + end +end) + |