Increase default chunk range to 3

This commit is contained in:
themode 2021-03-15 20:33:08 +01:00
parent fbb0ddd7db
commit ae922529ea

View File

@ -2327,7 +2327,7 @@ public class Player extends LivingEntity implements CommandSender {
// In this case we send the smallest amount of chunks possible
// Will be updated in PlayerSettings#refresh.
// Non-compliant clients might also be stuck with this view
return 1;
return 3;
} else {
final int serverRange = MinecraftServer.getChunkViewDistance();
return Math.min(playerRange, serverRange);