Spawn von Saaten deaktiviert, um Dopplungen zu vermeiden.

This commit is contained in:
N-Nachtigal 2025-05-09 23:37:11 +02:00
parent f69bd7f597
commit 9dc6c712b3
58 changed files with 29 additions and 71 deletions

View file

@ -886,6 +886,14 @@ minetest.register_craft({
recipe = 'x_farming:rice'
})
minetest.register_craft({
type = 'shapeless',
output = 'x_farming:rice_grains',
recipe = { 'x_farming:rice' }
})
minetest.register_craft({
output = 'x_farming:rice_stack 3',
recipe = {

View file

@ -152,6 +152,7 @@ minetest.register_craftitem('x_farming:jar_with_bee', {
minetest.register_craftitem('x_farming:rice_grains', {
description = S('Rice Grains'),
inventory_image = 'x_farming_rice_grains.png',
groups = { food_rice = 1 }
})
-- Sushi

View file

@ -28,7 +28,7 @@ x_farming.register_plant('x_farming:soybean', {
minlight = 13,
maxlight = 14,
fertility = { 'grassland' },
groups = { flammable = 4 },
groups = { flammable = 4, seed_soy = 1},
place_param2 = 3,
})