forked from VoxeLibre/VoxeLibre
REVERT: Fix mcl_dyes' mod.conf to use mcl_bamboo grow and check functions.
This commit is contained in:
parent
c4969c13cd
commit
08f9c0074a
|
@ -353,6 +353,8 @@ local function apply_bone_meal(pointed_thing, user)
|
|||
return true
|
||||
end
|
||||
|
||||
--[[
|
||||
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)
|
||||
|
@ -360,7 +362,7 @@ local function apply_bone_meal(pointed_thing, user)
|
|||
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
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
name = mcl_dye
|
||||
depends = mcl_core, mcl_flowers, mcl_mobitems, mcl_cocoas
|
||||
optional = mcl_bamboo
|
||||
|
|
Loading…
Reference in New Issue