Update all fuel recipes
This commit is contained in:
parent
a8fc75bc78
commit
4bed5f7c10
14 changed files with 173 additions and 10 deletions
|
@ -151,3 +151,10 @@ minetest.register_craft({
|
|||
{'group:wood'},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "fuel",
|
||||
recipe = 'mesecons_button:button_wood_off',
|
||||
burntime = 5,
|
||||
})
|
||||
|
||||
|
|
|
@ -32,6 +32,12 @@ minetest.register_craft({
|
|||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "fuel",
|
||||
recipe = "mesecons_noteblock:noteblock",
|
||||
burntime = 15
|
||||
})
|
||||
|
||||
mesecon.noteblock_play = function (pos, param2)
|
||||
local soundname
|
||||
if param2==8 then
|
||||
|
|
|
@ -122,3 +122,9 @@ mesecon:register_pressure_plate(
|
|||
"default_stone.png",
|
||||
"default_stone.png",
|
||||
{{"default:stone", "default:stone"}})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "fuel",
|
||||
recipe = "mesecons_pressureplates:pressure_plate_wood_off",
|
||||
burntime = 15
|
||||
})
|
||||
|
|
|
@ -176,3 +176,14 @@ minetest.register_abm(
|
|||
end,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "fuel",
|
||||
recipe = "mesecons_solarpanel:solar_panel_off",
|
||||
burntime = 15
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "fuel",
|
||||
recipe = "mesecons_solarpanel:solar_panel_inverted_off",
|
||||
burntime = 15
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue