Skip to content

Commit 440938d

Browse files
cryptobenchclaude
andcommitted
Reduce minViewRadius to fix entity spike on player join
Changed WorldMapSettings from minViewRadius=16 to minViewRadius=3 (matching vanilla Hytale defaults). This reduces chunks loaded on join from 1,089 to 49, preventing the 4k→54k entity spike when players connect. Also updated updateSpeed from 1.0F to 2.0F to match vanilla for faster progressive chunk loading as players explore. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 147c774 commit 440938d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/com/easyclaims/map/EasyClaimsChunkWorldMap.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public WorldMapSettings getWorldMapSettings() {
2727
settingsPacket.defaultScale = 128.0F;
2828
settingsPacket.minScale = 64.0F;
2929
settingsPacket.maxScale = 128.0F;
30-
return new WorldMapSettings(null, 3.0F, 1.0F, 16, 32, settingsPacket);
30+
return new WorldMapSettings(null, 3.0F, 2.0F, 3, 32, settingsPacket);
3131
}
3232

3333
@Override

0 commit comments

Comments
 (0)