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--; }