From d7b8d82e751bd90dac99dd5d7e6935280d307e93 Mon Sep 17 00:00:00 2001 From: ButterSword Date: Mon, 16 Mar 2026 01:40:27 -0400 Subject: [PATCH] Adjust tree and grass counts in ForestBiome --- Minecraft.World/ForestBiome.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Minecraft.World/ForestBiome.cpp b/Minecraft.World/ForestBiome.cpp index b22b8b396..b230d0eee 100644 --- a/Minecraft.World/ForestBiome.cpp +++ b/Minecraft.World/ForestBiome.cpp @@ -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)