1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-07-02 16:38:41 +00:00

Rename "NodeItem"/"ToolItem"/"CraftItem" to "node"/"tool"/"craft"

This commit is contained in:
Perttu Ahola 2011-12-02 12:12:07 +02:00
parent a17efe6e8f
commit 69bc9224db
7 changed files with 210 additions and 210 deletions

View file

@ -2,11 +2,11 @@ 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')
player:add_to_inventory('tool "SteelPick" 0')
player:add_to_inventory('node "torch" 99')
player:add_to_inventory('tool "SteelAxe" 0')
player:add_to_inventory('tool "SteelShovel" 0')
player:add_to_inventory('node "cobble" 99')
end
end)