FAQ
Portals do nothing when I step into them
By default, Nether portals in world X look for a world named X_nether. If that world doesn't exist, the portal does nothing (players are bounced back if bounceback: true in the config ).
Fix: Either create the matching nether world (/mv create myworld_nether nether) or explicitly link the portals to an existing world with /mvnp link nether myworld targetworld .
How do I activate nether portal auto-creation / auto-linking?
Portals auto-link based on the naming convention in the config . The default convention is:
- Nether portals in world
X→ worldX_nether - End portals in world
X→ worldX_the_end
As long as the worlds exist with those names, portals link automatically with no extra configuration needed.
How do I change the _nether / _the_end suffix?
Edit portal-auto-link-when in plugins/Multiverse-NetherPortals/config.yml. For example, to use nether_ as a prefix instead:
portal-auto-link-when:
nether:
prefix: 'nether_'
suffix: '' See the configuration reference for full details.
How do I link portals to a world that doesn't follow the naming convention?
Use the /mvnp link command to set an explicit destination:
/mvnp link nether survival hub This sends all nether portals in survival to hub, regardless of naming. See the commands page for full usage.
How do I stop mobs from going through portals?
Set teleport_entities: false in plugins/Multiverse-NetherPortals/config.yml and restart or reload the plugin. See configuration reference .
How do I suppress the "no destination" chat message?
Set send_no_destination_message: false in plugins/Multiverse-NetherPortals/config.yml. See configuration reference .
Links are not two-way — how do I make portals go back?
Links are one-directional. To make portals in world_nether go back to world, you need a second link command:
/mvnp link nether world world_nether
/mvnp link nether world_nether world World scaling — why does distance travelled differ between worlds?
Each world has a scale property. When a player travels through a nether portal, their exit position in the destination world is calculated using the ratio of the two worlds' scales. The standard Minecraft nether uses a scale of 8 (1 block in the nether = 8 blocks overworld). See World Properties — Scale and the scaling section on the basic usage page.