mirror of
https://codeberg.org/tenplus1/farming.git
synced 2025-06-29 23:01:00 +02:00
tweak crop drops to something more sensible
This commit is contained in:
@ -113,7 +113,7 @@ minetest.register_node("farming:cocoa_2", table.copy(def))
|
||||
def.tiles = {"farming_cocoa_3.png"}
|
||||
def.drop = {
|
||||
items = {
|
||||
{items = {"farming:cocoa_beans_raw 1"}, rarity = 1}
|
||||
{items = {"farming:cocoa_beans_raw"}, rarity = 1}
|
||||
}
|
||||
}
|
||||
minetest.register_node("farming:cocoa_3", table.copy(def))
|
||||
@ -126,8 +126,8 @@ def.growth_check = nil
|
||||
def.drop = {
|
||||
items = {
|
||||
{items = {"farming:cocoa_beans_raw 2"}, rarity = 1},
|
||||
{items = {"farming:cocoa_beans_raw 1"}, rarity = 2},
|
||||
{items = {"farming:cocoa_beans_raw 1"}, rarity = 4}
|
||||
{items = {"farming:cocoa_beans_raw"}, rarity = 2},
|
||||
{items = {"farming:cocoa_beans_raw"}, rarity = 4}
|
||||
}
|
||||
}
|
||||
minetest.register_node("farming:cocoa_4", table.copy(def))
|
||||
|
Reference in New Issue
Block a user