1
0
mirror of https://codeberg.org/tenplus1/farming.git synced 2025-03-13 16:00:36 +01:00

mortar and juicer now use group:stone

This commit is contained in:
tenplus1 2024-09-27 09:03:23 +01:00
parent 56fb88f484
commit e302b83c43

View File

@ -1118,8 +1118,8 @@ minetest.register_craft({
minetest.register_craft({
output = "farming:mortar_pestle",
recipe = {
{a.stone, "group:stick", a.stone},
{"", a.stone, ""}
{"group:stone", "group:stick", "group:stone"},
{"", "group:stone", ""}
}
})
@ -1139,8 +1139,8 @@ minetest.register_craft({
minetest.register_craft({
output = "farming:juicer",
recipe = {
{"", a.stone, ""},
{a.stone, "", a.stone}
{"", "group:stone", ""},
{"group:stone", "", "group:stone"}
}
})