forked from MineClone5/MineClone5
Update Fork #9
|
@ -281,6 +281,11 @@ local function apply_bone_meal(pointed_thing)
|
||||||
if math.random(1, 100) <= 75 then
|
if math.random(1, 100) <= 75 then
|
||||||
return mcl_farming:grow_plant("plant_beetroot", pos, n, 1, true)
|
return mcl_farming:grow_plant("plant_beetroot", pos, n, 1, true)
|
||||||
end
|
end
|
||||||
|
-- Sweet berry bush advances 1 stage
|
||||||
|
elseif string.find(n.name, "mcl_farming:sweet_berry_bush_") then
|
||||||
|
mcl_dye.add_bone_meal_particle(pos)
|
||||||
|
local stages = 1
|
||||||
|
return mcl_farming:grow_plant("plant_sweet_berry_bush", pos, n, stages, true)
|
||||||
elseif n.name == "mcl_cocoas:cocoa_1" or n.name == "mcl_cocoas:cocoa_2" then
|
elseif n.name == "mcl_cocoas:cocoa_1" or n.name == "mcl_cocoas:cocoa_2" then
|
||||||
mcl_dye.add_bone_meal_particle(pos)
|
mcl_dye.add_bone_meal_particle(pos)
|
||||||
-- Cocoa: Advance by 1 stage
|
-- Cocoa: Advance by 1 stage
|
||||||
|
|
Loading…
Reference in New Issue