11c60a06c2
A fun all stone world to play survival in. Inspired by Andrey "Lag01" the original creator of the Just test server.
12 lines
359 B
Lua
12 lines
359 B
Lua
minetest.register_on_newplayer(function(player)
|
|
--print("on_newplayer")
|
|
minetest.log("action", "Giving initial stuff to player "..player:get_player_name())
|
|
player:get_inventory():add_item('main', 'default:torch 3')
|
|
player:get_inventory():add_item('main', 'default:apple 3')
|
|
player:get_inventory():add_item('main', 'default:pick_wood 1')
|
|
|
|
|
|
|
|
end)
|
|
|