Adjust tree and grass counts in ForestBiome

This commit is contained in:
ButterSword 2026-03-16 01:40:27 -04:00 committed by GitHub
parent 43d520f692
commit d7b8d82e75
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -8,8 +8,8 @@
ForestBiome::ForestBiome(int id) : Biome(id)
{
friendlies_wolf.push_back(new MobSpawnerData(eTYPE_WOLF, 5, 4, 4)); // 4J - moved to their own category
decorator->treeCount = 10;
decorator->grassCount = 2;
decorator->treeCount = 11;
decorator->grassCount = 1;
}
Feature *ForestBiome::getTreeFeature(Random *random)