f893f613c3
- Make node match operate on only one of node or stack, depending on whether node defers to stack via is_stack_only. This should hopefully prevent future pummel recipe issues. - Add new core stack API. Needs to be deployed in a lot of places. - Start work on system for allowing flammable containers; they eject their potentially non-flammable contents.
36 lines
1.2 KiB
Lua
36 lines
1.2 KiB
Lua
-- LUALOCALS < ---------------------------------------------------------
|
|
local math, minetest, nodecore
|
|
= math, minetest, nodecore
|
|
local math_floor
|
|
= math.floor
|
|
-- LUALOCALS > ---------------------------------------------------------
|
|
|
|
local modname = minetest.get_current_modname()
|
|
|
|
function nodecore.ignite(pos, node)
|
|
local fuel = nodecore.node_group("fire_fuel", pos, node) or 0
|
|
if fuel < 0 then fuel = 0 end
|
|
if fuel > 6 then fuel = 6 end
|
|
fuel = math_floor(fuel)
|
|
local stack
|
|
if nodecore.node_group("eject_inv_on_burn", pos, node) then
|
|
stack = nodecore.stack_get(pos)
|
|
if stack and (not stack:is_empty()) then
|
|
local p = nodecore.scan_flood(pos, 2, nodecore.buildable_to)
|
|
nodecore.item_eject(p or pos, stack, 1)
|
|
end
|
|
end
|
|
minetest.set_node(pos, {name = modname .. ((fuel > 0)
|
|
and (":ember" .. fuel) or ":fire")})
|
|
minetest.after(0, function() minetest.check_for_falling(pos) end)
|
|
end
|
|
|
|
function nodecore.snuff(pos, node, groups)
|
|
local ember = nodecore.node_group("ember", pos, node)
|
|
if not ember then return end
|
|
ember = ember - 1
|
|
minetest.set_node(pos, {name = modname .. ((ember > 0)
|
|
and (":ember" .. ember) or ":ash")})
|
|
minetest.after(0, function() minetest.check_for_falling(pos) end)
|
|
end
|