also return buckets with generators

... and in the `smelt_item` function, even though it seems unused
This commit is contained in:
goblin 2014-07-19 00:18:44 +01:00
parent 9290e6f00d
commit 6ec12b51cb
2 changed files with 8 additions and 8 deletions

View File

@ -71,15 +71,15 @@ function technic.smelt_item(meta, result, speed)
if meta:get_int("cook_time") < result.time / speed then if meta:get_int("cook_time") < result.time / speed then
return return
end end
local result = minetest.get_craft_result({method = "cooking", width = 1, items = inv:get_list("src")}) local result
local afterfuel
result, afterfuel = minetest.get_craft_result({method = "cooking", width = 1, items = inv:get_list("src")})
if result and result.item then if result and result.item then
meta:set_int("cook_time", 0) meta:set_int("cook_time", 0)
-- check if there's room for output in "dst" list -- check if there's room for output in "dst" list
if inv:room_for_item("dst", result.item) then if inv:room_for_item("dst", result.item) then
srcstack = inv:get_stack("src", 1) inv:set_stack("src", 1, afterfuel.items[1])
srcstack:take_item()
inv:set_stack("src", 1, srcstack)
inv:add_item("dst", result.item) inv:add_item("dst", result.item)
end end
end end

View File

@ -51,7 +51,9 @@ function technic.register_generator(data)
local inv = meta:get_inventory() local inv = meta:get_inventory()
if not inv:is_empty("src") then if not inv:is_empty("src") then
local fuellist = inv:get_list("src") local fuellist = inv:get_list("src")
local fuel = minetest.get_craft_result( local fuel
local afterfuel
fuel, afterfuel = minetest.get_craft_result(
{method = "fuel", width = 1, {method = "fuel", width = 1,
items = fuellist}) items = fuellist})
if not fuel or fuel.time == 0 then if not fuel or fuel.time == 0 then
@ -61,9 +63,7 @@ function technic.register_generator(data)
end end
meta:set_int("burn_time", fuel.time) meta:set_int("burn_time", fuel.time)
meta:set_int("burn_totaltime", fuel.time) meta:set_int("burn_totaltime", fuel.time)
local stack = inv:get_stack("src", 1) inv:set_stack("src", 1, afterfuel.items[1])
stack:take_item()
inv:set_stack("src", 1, stack)
technic.swap_node(pos, "technic:"..ltier.."_generator_active") technic.swap_node(pos, "technic:"..ltier.."_generator_active")
meta:set_int(tier.."_EU_supply", data.supply) meta:set_int(tier.."_EU_supply", data.supply)
else else