paper recipe needs cotton, candle recipe needs string

This commit is contained in:
TenPlus1 2020-06-12 10:09:42 +01:00
parent 9109efb495
commit 5aa2397ca8

View File

@ -112,9 +112,9 @@ end -- END if
minetest.register_craft({ minetest.register_craft({
output = "default:paper 4", output = "default:paper 4",
recipe = { recipe = {
{"farming:string", "farming:string"}, {"farming:cotton", "farming:cotton"},
{"farming:string", "farming:string"}, {"farming:cotton", "farming:cotton"},
{"farming:string", "farming:string"}, {"farming:cotton", "farming:cotton"},
} }
}) })
@ -164,7 +164,7 @@ minetest.register_node("ethereal:candle", {
minetest.register_craft({ minetest.register_craft({
output = "ethereal:candle 2", output = "ethereal:candle 2",
recipe = { recipe = {
{"farming:cotton"}, {"farming:string"},
{"ethereal:palm_wax"}, {"ethereal:palm_wax"},
{"ethereal:palm_wax"}, {"ethereal:palm_wax"},
} }