Move commented out bamboo bone meal code into mods/ITEMS/mcl_bamboo/bamboo_base.lua

This commit is contained in:
teknomunk 2024-03-20 08:01:34 +00:00
parent d5684ca305
commit 57678e31bc
2 changed files with 6 additions and 11 deletions

View file

@ -34,6 +34,12 @@ local bamboo_def = {
wield_image = "mcl_bamboo_bamboo_shoot.png", wield_image = "mcl_bamboo_bamboo_shoot.png",
_mcl_blast_resistance = 1, _mcl_blast_resistance = 1,
_mcl_hardness = 1, _mcl_hardness = 1,
--[[
_mcl_on_bonemealing = function(pointed_thing, placer)
local pos = pointed_thing.under
return mcl_bamboo.grow_bamboo(pos, true)
end,
]]
node_box = { node_box = {
type = "fixed", type = "fixed",
fixed = { fixed = {

View file

@ -68,17 +68,6 @@ local function legacy_apply_bone_meal(pointed_thing, placer)
end end
end 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)
if success then
mcl_dye.add_bone_meal_particle(pos)
end
return success
--]]
return false return false
end end
-- End legacy bone meal API -- End legacy bone meal API