Update all fuel recipes
This commit is contained in:
parent
a8fc75bc78
commit
4bed5f7c10
14 changed files with 173 additions and 10 deletions
|
@ -148,6 +148,7 @@ minetest.register_craftitem("boat:boat", {
|
|||
description = "Boat",
|
||||
inventory_image = "boat_inventory.png",
|
||||
liquids_pointable = true,
|
||||
groups = { boat = 1, },
|
||||
|
||||
on_place = function(itemstack, placer, pointed_thing)
|
||||
if pointed_thing.type ~= "node" then
|
||||
|
@ -174,5 +175,11 @@ minetest.register_craft({
|
|||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "fuel",
|
||||
recipe = "group:boat",
|
||||
burntime = 20,
|
||||
})
|
||||
|
||||
local time_to_load= os.clock() - init
|
||||
print(string.format("[MOD] "..minetest.get_current_modname().." loaded in %.4f s", time_to_load))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue