Skip to content

Commit

Permalink
Make straw stairs usable as fuel (#2627)
Browse files Browse the repository at this point in the history
  • Loading branch information
p-ouellette committed Apr 13, 2020
1 parent 36b2bcb commit ea4ce80
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
6 changes: 0 additions & 6 deletions mods/farming/init.lua
Expand Up @@ -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",
Expand Down
7 changes: 7 additions & 0 deletions mods/farming/nodes.lua
Expand Up @@ -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}
Expand Down

0 comments on commit ea4ce80

Please sign in to comment.