From 8fc6802730c1604fbe13e4087fb87736904039ab Mon Sep 17 00:00:00 2001 From: Tim Date: Mon, 19 Jan 2015 22:56:23 +0100 Subject: [PATCH] make fake_fire buildable_to --- fake_fire/modfiles/nodes.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/fake_fire/modfiles/nodes.lua b/fake_fire/modfiles/nodes.lua index 830dde48..8fd23934 100644 --- a/fake_fire/modfiles/nodes.lua +++ b/fake_fire/modfiles/nodes.lua @@ -34,6 +34,7 @@ minetest.register_node("fake_fire:fake_fire", { }, paramtype = "light", walkable = false, + buildable_to = true, drop = "", -- So fire won't return to the inventory. ~ LazyJ sounds = minetest.sound_play("fire_small", {pos=cp, loop=true}), on_punch = function (pos,node,puncher) @@ -80,6 +81,7 @@ minetest.register_node("fake_fire:smokeless_fire", { }, paramtype = "light", walkable = false, + buildable_to = true, drop = "", -- So fire won't return to the inventory. ~ LazyJ sounds = minetest.sound_play("fire_small", {pos=cp, loop=true}), on_punch = function (pos,node,puncher) @@ -126,6 +128,7 @@ minetest.register_node("fake_fire:ice_fire", { }, paramtype = "light", walkable = false, + buildable_to = true, drop = "", -- So fire won't return to the inventory. ~ LazyJ sounds = minetest.sound_play("fire_small", {pos=cp, loop=true}), on_punch = function (pos,node,puncher) @@ -172,6 +175,7 @@ minetest.register_node("fake_fire:smokeless_ice_fire", { }, paramtype = "light", walkable = false, + buildable_to = true, drop = "", -- So fire won't return to the inventory. ~ LazyJ sounds = minetest.sound_play("fire_small", {pos=cp, loop=true}), on_punch = function (pos,node,puncher)