Rezepte bearbeitet, nicht verwendete mods gelöscht, Höhlen schöner gemacht

This commit is contained in:
N-Nachtigal 2025-05-19 17:01:55 +02:00
parent cf017b2ca1
commit 11f0b9fb09
695 changed files with 3432 additions and 15035 deletions

View file

@ -17,6 +17,8 @@
--]]
local S = minetest.get_translator(minetest.get_current_modname())
local mcl_farming = x_farming.mcl_farming
-- Donuts
local donut_def = {
@ -67,7 +69,7 @@ local donut_def = {
sunlight_propagates = true
}
if minetest.get_modpath('mcl_farming') then
if mcl_farming then
donut_def.on_secondary_use = minetest.item_eat(3)
end
@ -121,7 +123,7 @@ local donut_chocolate_def = {
sunlight_propagates = true
}
if minetest.get_modpath('mcl_farming') then
if mcl_farming then
donut_chocolate_def.on_secondary_use = minetest.item_eat(4)
end
@ -177,7 +179,7 @@ local fries_def = {
sunlight_propagates = true
}
if minetest.get_modpath('mcl_farming') then
if mcl_farming then
fries_def.on_secondary_use = minetest.item_eat(6)
end
@ -233,7 +235,7 @@ local pumpkin_pie_def = {
sunlight_propagates = true
}
if minetest.get_modpath('mcl_farming') then
if mcl_farming then
pumpkin_pie_def.on_secondary_use = minetest.item_eat(6)
end
@ -289,7 +291,7 @@ local beetroot_soup_def = {
_mcl_hardness = 0,
}
if minetest.get_modpath('mcl_farming') then
if mcl_farming then
beetroot_soup_def.on_secondary_use = minetest.item_eat(6, 'x_farming:bowl')
end
@ -343,7 +345,7 @@ local fish_stew_def = {
sunlight_propagates = true
}
if minetest.get_modpath('mcl_farming') then
if mcl_farming then
fish_stew_def.on_secondary_use = minetest.item_eat(8, 'x_farming:bowl')
end
@ -1419,7 +1421,7 @@ x_farming.register_pie('honey_kiwi_pie', {
--
-- Convert farming soils - copy from MTG
--
if not minetest.get_modpath('farming') then
if not x_farming.farming then
minetest.register_abm({
label = 'X Farming soil',
nodenames = { 'group:field' },