From fa797774063fee9df4706711dfdbb06e9a11573d Mon Sep 17 00:00:00 2001 From: piebot <274605694+pieeebot@users.noreply.github.com> Date: Wed, 22 Apr 2026 17:05:00 +0300 Subject: [PATCH] fix: compile error --- Minecraft.World/ReedTile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Minecraft.World/ReedTile.cpp b/Minecraft.World/ReedTile.cpp index e28421a0..b67c4874 100644 --- a/Minecraft.World/ReedTile.cpp +++ b/Minecraft.World/ReedTile.cpp @@ -56,7 +56,7 @@ bool ReedTile::mayPlace(Level *level, int x, int y, int z) { int below = level->getTile(x, y - 1, z); if (below == id) return true; - if (below != Tile::grass_Id && below != Tile::dirt_Id && below != Tile::sand_Id&& below != Tile::podzol_Id) return false; + if (below != Tile::grass_Id && below != Tile::dirt_Id && below != Tile::sand_Id) return false; if (level->getMaterial(x - 1, y - 1, z) == Material::water) return true; if (level->getMaterial(x + 1, y - 1, z) == Material::water) return true; if (level->getMaterial(x, y - 1, z - 1) == Material::water) return true;