Minecraft – Does multi-player client render distance affect server view distance for that player

minecraft-java-editionminecraft-java-edition-server

This is a question about multi-player Minecraft.

If a server view distance is set to 10 chunks, and a client render distance is set to 2 chunks, will the server only load 2 chunks for that player or the entire 10 chunks?

i.e. does the server load min(client_render_distance, server_view_distance) chunks?

Best Answer

The server loads as many chunks distance around a player as its server render distance is set to.

If you set the server render distance to 32 and your client render distance to 2 and fly 100 blocks away from e.g. a repeating command block, the command block still executes its command. It only stops when you go over 32 chunks away.