REVERT: Fix mcl_dyes' mod.conf to use mcl_bamboo grow and check functions.

This commit is contained in:
Michieal 2023-01-05 18:31:21 -05:00
parent c4969c13cd
commit 08f9c0074a
2 changed files with 4 additions and 3 deletions

View File

@ -353,14 +353,16 @@ local function apply_bone_meal(pointed_thing, user)
return true
end
-- Handle applying bonemeal to bamboo.
--[[
Here for when Bonemeal becomes an api, there's code if needed for handling applying to bamboo.
-- Handle applying bonemeal to bamboo.
elseif mcl_bamboo.is_bamboo(n.name) then
local success = mcl_bamboo.grow_bamboo(pos, true)
if success then
mcl_dye.add_bone_meal_particle(pos)
end
return success
--]]
elseif n.name == "mcl_flowers:fern" then
mcl_dye.add_bone_meal_particle(pos)
-- Fern: Grow into large fern

View File

@ -1,3 +1,2 @@
name = mcl_dye
depends = mcl_core, mcl_flowers, mcl_mobitems, mcl_cocoas
optional = mcl_bamboo