From d2a7f4fdf9eb463a6f2359e62c9a9a06e7d38420 Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Tue, 17 Mar 2015 13:34:23 -0400 Subject: [PATCH] add facedir to baskets --- bushes_classic/nodes.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bushes_classic/nodes.lua b/bushes_classic/nodes.lua index d6872fa..0a0446f 100644 --- a/bushes_classic/nodes.lua +++ b/bushes_classic/nodes.lua @@ -157,6 +157,7 @@ for i, bush_name in ipairs(bushes_classic.bushes) do "bushes_basket.png" }, paramtype = "light", + paramtype2 = "facedir", on_use = minetest.item_eat(18), groups = { dig_immediate = 3 }, }) @@ -206,6 +207,7 @@ minetest.register_node(":bushes:basket_empty", { mesh = "bushes_basket_empty.obj", tiles = { "bushes_basket.png" }, paramtype = "light", + paramtype2 = "facedir", groups = { dig_immediate = 3 }, })