2
Server help
I am running a two-person Minecraft server and am encountering an issue with how Multiverse-Core and EssentialsX are handling spawns and deaths.
When a player dies in my main world (which I intend to be the Hub World), they are incorrectly spawning in the other world I have created, rather than respawning back in the Hub World.
When a player dies in my main world (which I intend to be the Hub World), they are incorrectly spawning in the other world I have created, rather than respawning back in the Hub World.
3
This isn’t a bug — it’s a spawn priority / respawn handling conflict between EssentialsX and Multiverse-Core.
By default, EssentialsX controls death respawns, and Multiverse only handles world spawn points. If Essentials is set to redirect respawns, players can end up spawning in the wrong world.
Stand in your Hub world and run:
(Optional, but recommended)
Open:
Find respawn settings and change them to:
This allows Multiverse to control respawning instead of Essentials hijacking it.
If you want all deaths to return players to the Hub:
Or set a respawn world:
(Replace
If a player has a bed or respawn anchor in another world, Minecraft will always prefer that location.
To test:
After breaking any beds in other worlds.
✔ Deaths in the Hub → respawn in Hub
✔ No cross-world spawning
✔ Clean Multiverse + Essentials setup
By default, EssentialsX controls death respawns, and Multiverse only handles world spawn points. If Essentials is set to redirect respawns, players can end up spawning in the wrong world.
✅ Fix (Recommended)
1️⃣ Set the correct spawn in the Hub world
Stand in your Hub world and run:
/mv setspawn
(Optional, but recommended)
/setworldspawn
2️⃣ Disable EssentialsX respawn override
Open:
plugins/Essentials/config.yml
Find respawn settings and change them to:
respawn-at-home: false
respawn-at-warp: false
respawn-at-anchor: false
respawn-listener-priority: lowest
This allows Multiverse to control respawning instead of Essentials hijacking it.
3️⃣ (Optional but helpful) Force Hub respawn via Multiverse
If you want all deaths to return players to the Hub:
/mv gamerule spawnRadius 0 HubWorld
Or set a respawn world:
/mv modify set respawnworld HubWorld
(Replace
HubWorld with your actual world name)4️⃣ Check bed spawns
If a player has a bed or respawn anchor in another world, Minecraft will always prefer that location.
To test:
/kill <player>
After breaking any beds in other worlds.
🔍 Why this happens
EssentialsX overrides death respawns unless disabled
Multiverse-Core only controls world spawn logic
Bed spawns override everything unless removed
✅ Final Result
✔ Deaths in the Hub → respawn in Hub
✔ No cross-world spawning
✔ Clean Multiverse + Essentials setup
thank yvv chatgpt
Thanks!
