Mirror von
https://github.com/GeyserMC/Geyser.git
synchronisiert 2024-11-20 06:50:09 +01:00
Fix some instances of chunks not appearing (#3498)
Dieser Commit ist enthalten in:
Ursprung
0b80c58958
Commit
b8040a1d98
@ -1402,6 +1402,10 @@ public class GeyserSession implements GeyserConnection, GeyserCommandSource {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void setServerRenderDistance(int renderDistance) {
|
public void setServerRenderDistance(int renderDistance) {
|
||||||
|
// +1 is for Fabric and Spigot
|
||||||
|
// Without the client misses loading some chunks per https://github.com/GeyserMC/Geyser/issues/3490
|
||||||
|
// Fog still appears essentially normally
|
||||||
|
renderDistance = renderDistance + 1;
|
||||||
this.serverRenderDistance = renderDistance;
|
this.serverRenderDistance = renderDistance;
|
||||||
|
|
||||||
ChunkRadiusUpdatedPacket chunkRadiusUpdatedPacket = new ChunkRadiusUpdatedPacket();
|
ChunkRadiusUpdatedPacket chunkRadiusUpdatedPacket = new ChunkRadiusUpdatedPacket();
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren