mirror of
https://github.com/minetest/minetest_game.git
synced 2024-12-22 15:00:18 +01:00
Make straw stairs usable as fuel (#2627)
This commit is contained in:
parent
36b2bcb5f3
commit
ea4ce80f7c
@ -115,12 +115,6 @@ minetest.register_craft({
|
|||||||
|
|
||||||
-- Fuels
|
-- Fuels
|
||||||
|
|
||||||
minetest.register_craft({
|
|
||||||
type = "fuel",
|
|
||||||
recipe = "farming:straw",
|
|
||||||
burntime = 3,
|
|
||||||
})
|
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = "fuel",
|
type = "fuel",
|
||||||
recipe = "farming:wheat",
|
recipe = "farming:wheat",
|
||||||
|
@ -153,6 +153,13 @@ minetest.register_node("farming:straw", {
|
|||||||
sounds = default.node_sound_leaves_defaults(),
|
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
|
do
|
||||||
local recipe = "farming:straw"
|
local recipe = "farming:straw"
|
||||||
local groups = {snappy = 3, flammable = 4}
|
local groups = {snappy = 3, flammable = 4}
|
||||||
|
Loading…
Reference in New Issue
Block a user