diff --git a/Minecraft.World/Biome.cpp b/Minecraft.World/Biome.cpp index 93d1c9fd..311aba55 100644 --- a/Minecraft.World/Biome.cpp +++ b/Minecraft.World/Biome.cpp @@ -430,8 +430,8 @@ int Biome::getRandomDoublePlantType(Random *random) { int type = random->nextInt(10); - if (type < 7) return 1; - if (type == 7) return 4; - if (type == 8) return 5; - return 3; + if (type < 7) return 0; + if (type == 7) return 3; + if (type == 8) return 4; + return 2; } \ No newline at end of file diff --git a/Minecraft.World/DoublePlantFeature.cpp b/Minecraft.World/DoublePlantFeature.cpp index dc6e976d..265dc604 100644 --- a/Minecraft.World/DoublePlantFeature.cpp +++ b/Minecraft.World/DoublePlantFeature.cpp @@ -5,7 +5,7 @@ #include "TallGrass2.h" DoublePlantFeature::DoublePlantFeature(bool doUpdate) - : Feature(doUpdate), m_plantType(0) + : Feature(doUpdate), m_plantType(1) { }