diff options
Diffstat (limited to 'nibbles/init.lua')
-rw-r--r-- | nibbles/init.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nibbles/init.lua b/nibbles/init.lua index ae1ca16..f2a6c60 100644 --- a/nibbles/init.lua +++ b/nibbles/init.lua @@ -1,12 +1,12 @@ minetest.register_node("nibbles:floor",{ - description = "Floor", + description = "Nibbles Floor", tiles = {"nibbles_floor.png"}, paramtype = "light", groups = {cracky = 3, disable_jump = 1, not_in_creative_inventory = 0}, }) minetest.register_node("nibbles:wall",{ - description = "Floor", + description = "Nibbles Wall", tiles = { "nibbles_wall.png", "nibbles_wall.png", @@ -24,7 +24,7 @@ minetest.register_node("nibbles:placer",{ paramtype = "light", groups = {cracky = 3, not_in_creative_inventory = 0}, on_rightclick = function(pos, node, player, itemstack, pointed_thing) - local schem = minetest.get_modpath("nibbles").."/schems/nibbles.mts" + local schem = minetest.get_modpath("nibbles").."/schems/nibbles_level_1.mts" minetest.place_schematic({x=pos.x,y=pos.y-1,z=pos.z},schem,0, "air", true) end, }) |