I have a small mod, and one of the purposes of that mod is to add another type of berry bush into the game, coexisting with the OG berry bush. I have added the code for my new bush’s placement table in a temperate.json that loads without any errors in the log, but doesn’t actually spawn them in game. I noticed another section that appears to be dedicated to where the berry bush’s are supposed to spawn.
“berries”: {
“placement”: {
“function”: “gaussian”,
“mean”: -50,
“std_dev”: 30,
"__comment": “offset of mean near different terrain/landscape”,
“mean_offset”: {
“tree”: 100,
“water”: 0,
“boundary”: 0
},
“density”: {
“plains”: 0.6,
“foothills”: 0.8,
“mountains”: 0
}
}
},
I was wondering if that is indeed what my problem is(which i think it is), and if so, how I would get that section of code to recognize my new berry bush as something to spawn along with the old? @Drotten