From 824a77672c76fa40c979ffde8965ad2ce6a952c0 Mon Sep 17 00:00:00 2001 From: LeMagnesium Date: Sat, 10 Feb 2018 17:17:09 +0100 Subject: [PATCH] Fix two typos --- cavestuff/nodes.lua | 2 +- trunks/crafting.lua | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cavestuff/nodes.lua b/cavestuff/nodes.lua index 6d919b9..d4be0f2 100644 --- a/cavestuff/nodes.lua +++ b/cavestuff/nodes.lua @@ -67,7 +67,7 @@ minetest.register_node("cavestuff:desert_pebble_2",{ tiles = {"default_desert_stone.png"}, paramtype = "light", paramtype2 = "facedir", - groups = {cracky=3, stone=1, not_in_creative__inventory=1}, + groups = {cracky=3, stone=1, not_in_creative_inventory=1}, selection_box = cbox, collision_box = cbox, sounds = default.node_sound_stone_defaults(), diff --git a/trunks/crafting.lua b/trunks/crafting.lua index 02f3991..72f39ba 100644 --- a/trunks/crafting.lua +++ b/trunks/crafting.lua @@ -35,7 +35,7 @@ minetest.register_craft({ }) minetest.register_craft({ output = "trunks:twig_1 4", - recipe = {{"bushes:bushbranches2a"}} + recipe = {{"bushes:bushbranches2"}} }) minetest.register_craft({ output = "trunks:twig_1 4", @@ -130,4 +130,4 @@ minetest.register_craft({ -- twigs blocks --> twigs_roof_corner_2's {"trunks:twigs", "" ,"trunks:twigs"}, { "" ,"trunks:twigs", "" }, } -}) \ No newline at end of file +})