Update all fuel recipes

This commit is contained in:
Wuzzy 2017-01-10 06:43:07 +01:00
parent a8fc75bc78
commit 4bed5f7c10
14 changed files with 173 additions and 10 deletions

View file

@ -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))