rocket fuel can now be used as a furnace fuel

This commit is contained in:
Red_King_Cyclops 2019-09-05 15:43:42 +00:00
parent 4e5f070f78
commit e81b652b4e
1 changed files with 8 additions and 0 deletions

View File

@ -1089,3 +1089,11 @@ minetest.register_craft({
recipe = "rocket:bucket_oil",
--cooktime = 5,
})
--Rocket fuel as a fuel
minetest.register_craft({
type = "fuel",
recipe = "rocket:bucket_rocket_fuel",
burntime = 80,
replacements = {{"rocket:bucket_rocket_fuel", "bucket:bucket_empty"}},
})