From 672d080a9641a5184d4ad2259ebe9c9cd42ae257 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Wed, 22 Feb 2017 14:50:13 +0100 Subject: [PATCH] 100% to drop beetroot seeds for premature beetroot --- mods/ITEMS/mcl_farming/beetroot.lua | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/mods/ITEMS/mcl_farming/beetroot.lua b/mods/ITEMS/mcl_farming/beetroot.lua index 96fb448e4..fdc64b719 100644 --- a/mods/ITEMS/mcl_farming/beetroot.lua +++ b/mods/ITEMS/mcl_farming/beetroot.lua @@ -12,7 +12,7 @@ minetest.register_node("mcl_farming:beetroot_0", { paramtype = "light", walkable = false, drawtype = "plantlike", - drop = "", + drop = "mcl_farming:beetroot_seeds", tiles = {"mcl_farming_beetroot_0.png"}, selection_box = { type = "fixed", @@ -28,11 +28,7 @@ minetest.register_node("mcl_farming:beetroot_1", { paramtype = "light", walkable = false, drawtype = "plantlike", - drop = { - items = { - { items = {"mcl_farming:beetroot_seeds"}, rarity = 5 }, - }, - }, + drop = "mcl_farming:beetroot_seeds", tiles = {"mcl_farming_beetroot_1.png"}, selection_box = { type = "fixed", @@ -48,11 +44,7 @@ minetest.register_node("mcl_farming:beetroot_2", { paramtype = "light", walkable = false, drawtype = "plantlike", - drop = { - items = { - { items = {"mcl_farming:beetroot_seeds"}, rarity = 4 }, - }, - }, + drop = "mcl_farming:beetroot_seeds", tiles = {"farming_carrot_2.png"}, selection_box = { type = "fixed",