forked from Mineclonia/Mineclonia
Bone meal no longer spawns allium and blue orchid
This commit is contained in:
parent
78fbb85371
commit
e9fec6c9f3
|
@ -105,20 +105,23 @@ end
|
||||||
-- Bone Meal
|
-- Bone Meal
|
||||||
|
|
||||||
mcl_dye.apply_bone_meal = function(pointed_thing)
|
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 = {
|
local flowers_table = {
|
||||||
"mcl_flowers:dandelion",
|
"mcl_flowers:dandelion",
|
||||||
"mcl_flowers:dandelion",
|
"mcl_flowers:dandelion",
|
||||||
"mcl_flowers:poppy",
|
"mcl_flowers:poppy",
|
||||||
|
|
||||||
"mcl_flowers:blue_orchid",
|
|
||||||
"mcl_flowers:oxeye_daisy",
|
"mcl_flowers:oxeye_daisy",
|
||||||
"mcl_flowers:tulip_orange",
|
"mcl_flowers:tulip_orange",
|
||||||
"mcl_flowers:tulip_red",
|
"mcl_flowers:tulip_red",
|
||||||
"mcl_flowers:tulip_white",
|
"mcl_flowers:tulip_white",
|
||||||
"mcl_flowers:tulip_pink",
|
"mcl_flowers:tulip_pink",
|
||||||
"mcl_flowers:allium",
|
|
||||||
"mcl_flowers:azure_bluet",
|
"mcl_flowers:azure_bluet",
|
||||||
|
|
||||||
|
-- Allium and blue orchid intentionally left out,
|
||||||
|
-- those must be found by the player.
|
||||||
}
|
}
|
||||||
|
|
||||||
pos = pointed_thing.under
|
pos = pointed_thing.under
|
||||||
|
|
Loading…
Reference in New Issue