Merge pull request 'Register sweet berry bush by add_plant function to enable plant growth' (#344) from balazsszalab/MineClone5:master into master

Reviewed-on: MineClone5/MineClone5#344
Reviewed-by: PrairieWind <prairie.astronomer1@gmail.com>
This commit is contained in:
PrairieWind 2022-06-18 16:11:05 +00:00
commit 2b20f89d7b
1 changed files with 3 additions and 0 deletions

View File

@ -63,3 +63,6 @@ minetest.register_decoration({
y_min = 2,
decoration = "mcl_sweet_berry:sweet_berry_bush_3"
})
-- TODO: Find proper interval and chance values for sweet berry bushes. Current interval and chance values are copied from mcl_farming:beetroot which has similar growth stages.
mcl_farming:add_plant("plant_sweet_berry_bush", "mcl_farming:sweet_berry_bush_3", {"mcl_farming:sweet_berry_bush_0", "mcl_farming:sweet_berry_bush_1", "mcl_farming:sweet_berry_bush_2"}, 68, 3)