Fix sign fuel

This commit is contained in:
Wuzzy 2017-01-10 06:46:56 +01:00
parent 94e8f85216
commit a32083c81b
2 changed files with 6 additions and 12 deletions

View File

@ -998,12 +998,6 @@ minetest.register_craft({
burntime = 15,
})
minetest.register_craft({
type = "fuel",
recipe = "default:fence_wood",
burntime = 15,
})
minetest.register_craft({
type = "fuel",
recipe = "default:ladder",
@ -1016,12 +1010,6 @@ minetest.register_craft({
burntime = 15,
})
minetest.register_craft({
type = "fuel",
recipe = "signs:sign_wall",
burntime = 10,
})
minetest.register_craft({
type = "fuel",
recipe = "default:chest",

View File

@ -305,3 +305,9 @@ end
if minetest.setting_get("log_mods") then
minetest.log("action", "signs loaded")
end
minetest.register_craft({
type = "fuel",
recipe = "signs:sign_wall",
burntime = 10,
})