Items can be inserted in furnaces through side

This commit is contained in:
Novatux 2013-01-16 12:26:11 +01:00
parent 1385c8dde2
commit d5f7f5fb8a
1 changed files with 2 additions and 6 deletions

View File

@ -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)