Skip to content
Snippets Groups Projects
Unverified Commit ea4ce80f authored by Paul Ouellette's avatar Paul Ouellette Committed by GitHub
Browse files

Make straw stairs usable as fuel (#2627)

parent 36b2bcb5
No related branches found
No related tags found
No related merge requests found
......@@ -115,12 +115,6 @@ minetest.register_craft({
-- Fuels
minetest.register_craft({
type = "fuel",
recipe = "farming:straw",
burntime = 3,
})
minetest.register_craft({
type = "fuel",
recipe = "farming:wheat",
......
......@@ -153,6 +153,13 @@ minetest.register_node("farming:straw", {
sounds = default.node_sound_leaves_defaults(),
})
-- Registered before the stairs so the stairs get fuel recipes.
minetest.register_craft({
type = "fuel",
recipe = "farming:straw",
burntime = 3,
})
do
local recipe = "farming:straw"
local groups = {snappy = 3, flammable = 4}
......
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