Skip to content
Snippets Groups Projects
Commit 2f9efc28 authored by Vanessa Ezekowitz's avatar Vanessa Ezekowitz
Browse files

disable drops on simple fires, make fancy fire break into two torches and one bundle of sticks

parent 0c41221b
No related branches found
No related tags found
No related merge requests found
......@@ -90,7 +90,8 @@ for _, f in ipairs(flame_types) do
minetest.sound_play("fire_extinguish", {
pos = pos, max_hear_distance = 5
})
end
end,
drop = ""
})
end
......@@ -117,7 +118,16 @@ minetest.register_node("fake_fire:fancy_fire", {
minetest.sound_play("fire_extinguish", {
pos = pos, max_hear_distance = 5
})
end
end,
drop = {
max_items = 3,
items = {
{
items = { "default:torch", "default:torch", "building_blocks:sticks" },
rarity = 1,
}
}
}
})
-- EMBERS
......@@ -211,7 +221,7 @@ minetest.register_craft({
minetest.register_craft({
type = "shapeless",
output = 'fake_fire:fancy_fire',
recipe = {"fake_fire:fake_fire", "building_blocks:sticks"}
recipe = {"default:torch", "building_blocks:sticks", "default:torch" }
})
-- ALIASES
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment