Distributes LOD (Level of Detail) chunk data from servers to connected clients over a custom networking protocol. Built primarily as a multiplayer backend for Voxy — clients request distant chunks in batches, the server reads them from disk or memory and streams the data back, enabling Voxy to render terrain far beyond the vanilla render distance on multiplayer servers.
Supports both Fabric and Paper servers. The client is always a Fabric mod.
Lss-Demo-Paper.mp4
Without LSS, Voxy can only build LOD data from chunks the client has already loaded — limiting distant terrain rendering to areas the player has personally visited. LSS moves this work to the server:
- Client connects and performs a handshake with the server
- Server sends session config (distance limits, rate limits, generation settings)
- Client scans outward in an expanding spiral, batch-requesting chunks it doesn't have cached
- Server reads chunks from disk (or generates them on demand), serializes the raw MC section data (block states, biomes, lighting), and streams it back
- Client receives the section data and feeds it directly into Voxy's rendering engine via
rawIngest - After initial sync, the server pushes notifications when chunks change so clients stay up to date
The result: players see fully rendered terrain out to hundreds of chunks on multiplayer servers, without needing to explore the world first.
Download from Modrinth:
- lod-server-support-fabric — Fabric mod JAR (client + server)
- lod-server-support-paper — Paper plugin JAR (server only)
- Place
lod-server-support-fabric.jarin the server'smods/directory - Install the Fabric mod and Voxy on all clients
- Restart the server — config is generated at
config/lss-server-config.json
- Install Voxy and place
lod-server-support-fabric.jarin the client'smods/directory - Join a server running LSS — client config is generated at
config/lss-client-config.json
- Place
lod-server-support-paper.jarin the server'splugins/directory - Install the Fabric mod and Voxy on all clients
- Restart the server — config is generated at
plugins/LodServerSupport/lss-server-config.json
- Minecraft 1.21.11
- Fabric Loader 0.14.22+
- Fabric API
- Java 21+
- Paper 1.21.11+
- Java 21+
- Fabric Loader 0.14.22+
- Fabric API
- Voxy
/lsslod stats- Show per-player transfer statistics/lsslod diag- Show detailed diagnostics (config, bandwidth, queue depths)
/lss clearcache- Clear the local column cache, forcing all chunks to be re-requested from the server
Server config is generated on first run:
- Fabric:
config/lss-server-config.json - Paper:
plugins/LodServerSupport/lss-server-config.json
| Setting | Default | Description |
|---|---|---|
enabled |
true |
Enable LOD distribution |
lodDistanceChunks |
256 |
Max LOD distance in chunks |
bytesPerSecondLimitPerPlayer |
20971520 |
Per-player pre-compression bandwidth cap (20 MB/s) |
bytesPerSecondLimitGlobal |
104857600 |
Total pre-compression bandwidth cap (100 MB/s) |
diskReaderThreads |
5 |
Thread pool size for async disk reads |
sendQueueLimitPerPlayer |
4000 |
Max queued sections per player |
syncOnLoadRateLimitPerPlayer |
800 |
Sync-on-load requests per second per player |
syncOnLoadConcurrencyLimitPerPlayer |
200 |
Max in-flight sync requests per player |
generationRateLimitPerPlayer |
80 |
Generation requests per second per player |
generationConcurrencyLimitPerPlayer |
16 |
Max in-flight generation requests per player |
enableChunkGeneration |
true |
Generate missing chunks on demand for LOD data |
generationConcurrencyLimitGlobal |
32 |
Max chunks generating server-wide at once |
generationTimeoutSeconds |
60 |
Timeout for pending chunk generation |
perDimensionTimestampCacheSizeMB |
32 |
Max timestamp cache size per dimension in MB (used for up-to-date checks on reconnect) |
dirtyBroadcastIntervalSeconds |
10 |
Interval for pushing dirty column notifications to clients |
Paper-specific: The config also includes an updateEvents list of Bukkit event class names used for dirty chunk detection. /lsslod commands require the lss.admin permission (or op).
Client config is generated at config/lss-client-config.json on first run.
| Setting | Default | Description |
|---|---|---|
receiveServerLods |
true |
Enable receiving LOD data from the server |
lodDistanceChunks |
0 |
Max LOD request distance in chunks (0 = use server limit) |
offThreadSectionProcessing |
true |
Process received sections off the render thread |
MIT