summaryrefslogtreecommitdiff
path: root/compat.lua
diff options
context:
space:
mode:
Diffstat (limited to 'compat.lua')
-rw-r--r--compat.lua8
1 files changed, 2 insertions, 6 deletions
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)