From bba7d1d11a606da836951ba5f8f907be7605013b Mon Sep 17 00:00:00 2001 From: Us3ful-dev Date: Mon, 23 Mar 2026 07:58:21 +0100 Subject: [PATCH] Remove more debug code --- Minecraft.World/PortalTile.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/Minecraft.World/PortalTile.cpp b/Minecraft.World/PortalTile.cpp index c7c37085f..1b64212b8 100644 --- a/Minecraft.World/PortalTile.cpp +++ b/Minecraft.World/PortalTile.cpp @@ -111,7 +111,6 @@ bool PortalTile::trySpawnPortal(Level *level, int x, int y, int z, bool actually bool twoPosible = false; // two neth portals posible (x and z direction) if (xd == zd) { - level->setTileAndData(x, y + 4, z, Tile::emeraldOre_Id, 0, Tile::UPDATE_CLIENTS); if (xd == 1) twoPosible = true; else return false; } @@ -124,7 +123,6 @@ bool PortalTile::trySpawnPortal(Level *level, int x, int y, int z, bool actually } else if (level->getTile(x, y, z - zd) == 0 && !twoPosible) { - level->setTileAndData(x, y + 5, z, Tile::emeraldOre_Id, 0, Tile::UPDATE_CLIENTS); z--; }