How to Link Two Nether Portals Without Duplicates
A portal pair that “keeps making new portals” is almost always a placement problem, not a bug. The game links to an existing portal only if one sits inside a small search window, and it never tells you when it misses.
The four steps
1. Note the Overworld portal’s coordinates. Stand in the portal block itself, not a few blocks away, and record X, Y and Z. A five-block error here becomes a placement problem later.
2. Divide X and Z by 8, and floor the result. Leave Y alone entirely.
For a portal at (800, 64, −1200):
X: floor(800 ÷ 8) = 100
Y: 64 unchanged
Z: floor(−1200 ÷ 8) = −150
Watch negatives. floor rounds down, so −1201 ÷ 8 is −151, not −150. The coordinate reference has the full table if your Z is negative and not a multiple of 8. Or just use the nether portal calculator, which handles the flooring for you.
3. Build the Nether portal at those exact coordinates. Not “roughly there” — the Nether search radius is 16 blocks, which is small. Match Y as closely as the terrain allows.
4. Test the round trip before building anything around it. Walk through both ways. If you come back to the portal you started from, they are linked.
Telling drift from a duplicate
A round trip will often not return you to the exact block you left. That is expected: the trip in floors the coordinate and the trip out multiplies it, so the pair does not perfectly invert.
Overworld (803, −1201) → Nether (100, −151) → Overworld (800, −1208)
Three blocks off on X, seven on Z. The maximum is 7 blocks per horizontal axis.
So:
- Return within ~7 blocks, same portal — normal drift. Nothing is wrong.
- Return to a portal you did not build, or hundreds of blocks away — a duplicate was created.
The distinction matters because the fix for drift is nothing, and the fix for a duplicate is to break it and rebuild.
Fixing a duplicate
- Find both Nether portals. The one you built, and the one the game made.
- Break the unwanted one. Mine one obsidian block from its frame to deactivate it.
- Re-check your coordinates. Convert the Overworld portal again and compare against where your Nether portal actually sits.
- Move your portal if it is off. Rebuild it at the correct scaled coordinate.
- Test again.
Breaking the duplicate without fixing the placement just recreates it the next time you travel.
Why the window is so tight going in
The 16-block Nether radius sounds generous until you remember distances in the Nether are compressed 8×. A portal misplaced by 20 Nether blocks misses — even though walking 20 blocks in the Overworld is nothing.
Coming back the other way is far more forgiving: the Overworld radius is 128 blocks. This asymmetry is why portals tend to link correctly on the return trip and fail on the way in, and it is covered in detail in how far apart do nether portals need to be.
Practical habits that prevent the problem
- Light the Overworld portal first, then travel through and build the Nether side at the calculated position. Building both ends blind invites a mismatch.
- Write the coordinates down before you go. Reading them off a screenshot later is how digits get transposed.
- Do not build a second Overworld portal within 128 blocks of an existing one — both will try to use the same Nether portal.
- Check Y. Height is never scaled, and a Nether portal 60 blocks above or below the target can behave unexpectedly even when X and Z are perfect.
- Test before you decorate. It is much easier to move a bare portal than one embedded in a build.
If your portals still will not cooperate, the errors collected in 6 nether portal mistakes that create duplicates cover the remaining causes, including the ones that are not about coordinates at all.
References & Sources
- [1] Minecraft Wiki - Nether Portal (opens in new tab)
Supports: Portal linking rules, search radii, and the conditions that trigger new portal generation.
Verified
- [2] Minecraft - Java Edition 1.16.2 Release Notes (opens in new tab)
Supports: First-party notes for the version that corrected Nether-side portal search behaviour.
Verified
- [3] Minecraft Help - Official Support (opens in new tab)
Supports: First-party support documentation for current Java and Bedrock portal behaviour.
Verified