From 0f3738c32000cd224183b7cb1b038aaf3748fe44 Mon Sep 17 00:00:00 2001 From: NSDeathman Date: Wed, 11 Mar 2026 20:04:40 +0300 Subject: [PATCH] Delete reeds feature generation bug --- Minecraft.World/BiomeDecorator.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Minecraft.World/BiomeDecorator.cpp b/Minecraft.World/BiomeDecorator.cpp index add156e88..3ac8fbe7b 100644 --- a/Minecraft.World/BiomeDecorator.cpp +++ b/Minecraft.World/BiomeDecorator.cpp @@ -229,14 +229,6 @@ void BiomeDecorator::decorate() reedsFeature->place(level, random, x, y, z); } - for (int i = 0; i < 10; i++) - { - int x = xo + random->nextInt(16) + 8; - int y = random->nextInt(Level::genDepth); - int z = zo + random->nextInt(16) + 8; - reedsFeature->place(level, random, x, y, z); - } - if (random->nextInt(32) == 0) { int x = xo + random->nextInt(16) + 8;