Bonemeal is crushed from bones found in dirt or by using player bones, Mulch is made from a tree trunk surrounded by leaves and Fertiliser is a mix of both, each of which can be used to quickly grow saplings, crops and grass/decoration, papyrus on top of dirt and cactus on sand. Support for ethereal saplings/crops, farming redo crops and moretrees saplings are included.
Nice! It's more polished than the bones mod I'm using. I like the particles! Are they green because you sprinkle the souls of past Sams? Found two things with it that's a bit odd however
• Is it meant to be able to grow grass and flowers on desert sand?
• Is it meant to override the sapling growing light and proximity check? As of now you can build walls of trees like this
+
Spoiler
Thanks!
Mods | Support Mesehub: bc1qluuests9rxmlnvpjrhsnyjg9ucwy6z3r0y3srw
By default any group:soil will have grass and flowers growing on it, but since default farming mod classifies desert sand as soil then it's a problem, so I'll put a specific entry for desert sand and upload today...
... as for sapling light checks, yes, it's meant to override them :) Many players including myself wanted a way to force grow saplings without the need for light (or in ethereal's case specific dirt to grow on :)
TenPlus1 wrote:By default any group:soil will have grass and flowers growing on it, but since default farming mod classifies desert sand as soil then it's a problem, so I'll put a specific entry for desert sand and upload today...
Is that a concious decision you think? If so I guess I can live with it, considering how powerful this bonemeal really seems to be :)
TenPlus1 wrote:... as for sapling light checks, yes, it's meant to override them :) Many players including myself wanted a way to force grow saplings without the need for light (or in ethereal's case specific dirt to grow on :)
Alright, cool!
Mods | Support Mesehub: bc1qluuests9rxmlnvpjrhsnyjg9ucwy6z3r0y3srw
- sand, desert_sand and silver_sand will only spawn the odd dry_shrub instead of grass and flowers :)
- added global bonemeal:on_use(pos) function for other mods to use
- added flowers from bakedclay mod as decoration
Last edited by TenPlus1 on Wed Jan 18, 2017 11:40, edited 3 times in total.
the bonemeal mod is among those that are vital for me on Xanadu. I have always liked the fertilizer concept.
I wonder though wether it might be interesting to split the power somewhat. Maybe having a cheap fertilizer that makes use of more leaves or grass with a single bone to enhance growth time but stick to the biome rules. A stronger fertilizer could be made by upgrading like needing several cheap fertilizer nodes and maybe some more mob bones to be able to override the growth rules as set by biomes and proximity. A third level might be something like a green thumb or some green boots that turn sand and stone to dirt with grass as I walk over them.
I get a crash when I add a crop. The elements of the input table are being added to the crop table, instead of the whole input table. This fixes it, though you may want more input checking.
diff --git a/init.lua b/init.lua
index 92c2f03..a8cb333 100644
--- a/init.lua
+++ b/init.lua
@@ -268,7 +268,7 @@ end
function bonemeal:add_crop(list)
for n = 1, #list do
- table.insert(crops, list[n])
+ crops[#crops+1] = list
end
end
Believe in people and you don't need to believe anything else.