Add vial to fragment recipe.

This commit is contained in:
SFENCE 2021-06-09 17:09:03 +02:00
parent 2e5f3cf217
commit ff21c1f6a5

@ -12,11 +12,17 @@ minetest.register_craftitem("biofuel:phial", {
})
minetest.register_craft({
output = "biofuel:phial 4",
output = "biofuel:phial 6",
recipe = {{"default:glass"},
{"default:glass"}},
})
minetest.register_craft({
type = "shapeless",
output = "vessels:glass_fragments",
recipe = {"biofuel:phial","biofuel:phial","biofuel:phial"},
})
--Vial of Biofuel
minetest.register_craftitem("biofuel:phial_fuel", {
description = S("Vial of Biofuel"),