Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -890,7 +890,7 @@ public void connect() {
geyser.getLogger().debug("Extending overworld dimension to " + minY + " - " + maxY);

DimensionDataPacket dimensionDataPacket = new DimensionDataPacket();
dimensionDataPacket.getDefinitions().add(new DimensionDefinition("minecraft:overworld", maxY, minY, 5 /* Void */));
dimensionDataPacket.getDefinitions().add(new DimensionDefinition("minecraft:overworld", maxY, minY, 5, 3));
upstream.sendPacket(dimensionDataPacket);
}

Expand Down
6 changes: 3 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ guava = "29.0-jre"
gson = "2.3.1" # Provided by Spigot 1.8.8 TODO bump to 2.8.1 or similar (Spigot 1.16.5 version) after Merge
gson-runtime = "2.10.1"
websocket = "1.5.1"
protocol-connection = "3.0.0.Beta12-20260505.144358-18"
protocol-common = "3.0.0.Beta12-20260505.144358-18"
protocol-codec = "3.0.0.Beta12-20260505.144358-18"
protocol-connection = "3.0.0.Beta12-20260507.151512-19"
protocol-common = "3.0.0.Beta12-20260507.151512-19"
protocol-codec = "3.0.0.Beta12-20260507.151512-19"
raknet = "1.0.0.CR3-20260421.190401-34"
minecraftauth = "5.0.0"
mcprotocollib = "26.1-20260404.063343-16"
Expand Down
Loading