I am trying to edit the biomes.xml to reduce the amount of shrubs/grass that spawns on world generation, and I wanted to know how editing the subbiomes works...
Some biomes have multiple subbiomes. Each of these have their own probabilities for decorations, but the subbiomes don't seem to have any labels. Does this mean that a single entry affects ALL subbiomes of the core biome, it affects them in order and must be differentiated by ordered list, or it searches for the term within every subbiome and only alters those that differ?
An example of what I'm trying to use is as follows:
<set xpath="/worldgeneration/biomes/biome[@name=snow]/subbiome/decorations/decoration[type=block' and @blockname='treeSnowyGrassDiagonal]/@prob">0.2</set>]
The snow biome has four separate subbiomes (only differentiated by comments) The first two are...
<!-- Snow Sub Biome grass and Blueberries -->
and
<!-- Snow Sub Biome rocks and snowberries -->
The first subbiome has grass, the second doesn't. If a third also had grass, would the set xpath entry alter only the first, the first and third, or all three?
Some biomes have multiple subbiomes. Each of these have their own probabilities for decorations, but the subbiomes don't seem to have any labels. Does this mean that a single entry affects ALL subbiomes of the core biome, it affects them in order and must be differentiated by ordered list, or it searches for the term within every subbiome and only alters those that differ?
An example of what I'm trying to use is as follows:
<set xpath="/worldgeneration/biomes/biome[@name=snow]/subbiome/decorations/decoration[type=block' and @blockname='treeSnowyGrassDiagonal]/@prob">0.2</set>]
The snow biome has four separate subbiomes (only differentiated by comments) The first two are...
<!-- Snow Sub Biome grass and Blueberries -->
and
<!-- Snow Sub Biome rocks and snowberries -->
The first subbiome has grass, the second doesn't. If a third also had grass, would the set xpath entry alter only the first, the first and third, or all three?