Spawn points: where players appear and why it goes wrong

Worlds & Backups Reviewed September 6, 2026 2 min read

«Spawn» means at least four things in Minecraft, and most spawn problems are somebody changing one of them while meaning another.

The four

ThingWhat it controls
World spawnWhere a brand-new player appears, and where you go with /spawn in vanilla.
spawn-protectionA radius around world spawn where non-operators cannot build.
Bed / respawn anchorWhere an individual player returns after dying.
spawn-radius (server.properties)How far from world spawn players are scattered when they arrive.

Setting the world spawn properly

  1. Stand exactly where you want people to arrive

    Then run /setworldspawn from there. With no coordinates it uses your position, which is easier to get right than typing numbers.

  2. Check what is around it

    New players arrive here with nothing. A spawn on a cliff edge, over water, or with a hostile mob spawner nearby is a first impression you did not intend.

  3. Decide the spawn radius

    spawn-radius=0 in server.properties puts everyone on the exact block. Anything higher scatters them, which is good on a busy server and confusing on a small one.

  4. Set spawn protection to match your build

    The default protects a radius around spawn from non-operators. If your spawn build is larger than that, part of it is unprotected; if it is smaller, players cannot build near an area you did not mean to reserve.

Spawn protection does not stop everything

It blocks building and breaking by non-operators. It does not stop lava buckets outside the radius flowing in, TNT, or containers being opened. Treat it as a first layer, not as the protection for a spawn build worth keeping — a region protection plugin is what does that properly.

spawn-protection also blocks your builders

Anyone without operator cannot place a block inside the radius, including the person you asked to decorate spawn. Rather than op-ing them, set the value to 0 and use a region plugin, which lets you grant building to specific people.

Frequent questions

Why do players respawn far from spawn?
They have a bed or a respawn anchor set. Personal respawn points win over world spawn.
Why did someone respawn at world spawn instead of their bed?
The bed was broken, obstructed, or in a different dimension than they died in.
Does /setworldspawn move existing players' beds?
No. It only changes where people go with no personal spawn point set.