From e9fec6c9f3ce004d2b86ebe7d84f5874cb34d7a5 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Wed, 13 Sep 2017 05:52:26 +0200 Subject: [PATCH] Bone meal no longer spawns allium and blue orchid --- mods/ITEMS/mcl_dye/init.lua | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/mods/ITEMS/mcl_dye/init.lua b/mods/ITEMS/mcl_dye/init.lua index 77cc5efad..3598269c7 100644 --- a/mods/ITEMS/mcl_dye/init.lua +++ b/mods/ITEMS/mcl_dye/init.lua @@ -105,20 +105,23 @@ end -- Bone Meal mcl_dye.apply_bone_meal = function(pointed_thing) - -- TODO: Use biome-specific flowers + -- TODO: Only spawn flowers specific to the biome + + -- Bone meal currently spawns all flowers found in the plains. local flowers_table = { "mcl_flowers:dandelion", "mcl_flowers:dandelion", "mcl_flowers:poppy", - "mcl_flowers:blue_orchid", "mcl_flowers:oxeye_daisy", "mcl_flowers:tulip_orange", "mcl_flowers:tulip_red", "mcl_flowers:tulip_white", "mcl_flowers:tulip_pink", - "mcl_flowers:allium", "mcl_flowers:azure_bluet", + + -- Allium and blue orchid intentionally left out, + -- those must be found by the player. } pos = pointed_thing.under