From 6080a3a64b88d90e132afe4fd5e1b58f3564b5c3 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Wed, 22 Feb 2017 14:25:54 +0100 Subject: [PATCH] Fix potato plant drops, also drop poison potatoes --- mods/ITEMS/mcl_farming/potatoes.lua | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/mods/ITEMS/mcl_farming/potatoes.lua b/mods/ITEMS/mcl_farming/potatoes.lua index 64112d924..f173761b4 100644 --- a/mods/ITEMS/mcl_farming/potatoes.lua +++ b/mods/ITEMS/mcl_farming/potatoes.lua @@ -36,11 +36,12 @@ minetest.register_node("mcl_farming:potato", { drawtype = "plantlike", tiles = {"farming_potato_3.png"}, drop = { - max_items = 1, items = { - { items = {'mcl_farming:potato_item 2'} }, - { items = {'mcl_farming:potato_item 3'}, rarity = 2 }, - { items = {'mcl_farming:potato_item 4'}, rarity = 5 } + { items = {'mcl_farming:potato_item 1'} }, + { items = {'mcl_farming:potato_item 1'}, rarity = 2 }, + { items = {'mcl_farming:potato_item 1'}, rarity = 2 }, + { items = {'mcl_farming:potato_item 1'}, rarity = 2 }, + { items = {'mcl_farming:potato_item_poison 1'}, rarity = 50 } } }, groups = {dig_immediate=3, not_in_creative_inventory=1,dig_by_water=1},