From d5f7f5fb8a963735a9e6a79f8ad1979b68990c72 Mon Sep 17 00:00:00 2001 From: Novatux Date: Wed, 16 Jan 2013 12:26:11 +0100 Subject: Items can be inserted in furnaces through side --- compat.lua | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'compat.lua') diff --git a/compat.lua b/compat.lua index 31e59a2..40ed4a1 100644 --- a/compat.lua +++ b/compat.lua @@ -18,10 +18,8 @@ minetest.register_node(":default:furnace", { local inv=meta:get_inventory() if direction.y==1 then return inv:add_item("fuel",stack) - elseif direction.y==-1 then - return inv:add_item("src",stack) else - return stack + return inv:add_item("src",stack) end end, can_insert=function(pos,node,stack,direction) @@ -74,10 +72,8 @@ minetest.register_node(":default:furnace_active", { local inv=meta:get_inventory() if direction.y==1 then return inv:add_item("fuel",stack) - elseif direction.y==-1 then - return inv:add_item("src",stack) else - return stack + return inv:add_item("src",stack) end end, can_insert=function(pos,node,stack,direction) -- cgit v1.2.3