Skip to content

Commit

Permalink
Update for 1.21.50
Browse files Browse the repository at this point in the history
Co-authored-by: QuickGlare <[email protected]>
  • Loading branch information
rtm516 and QuickGlare committed Dec 3, 2024
1 parent 8b4dd38 commit 87194d8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions bootstrap/standalone/src/main/resources/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ session:
session-info:
host-name: "Geyser Test Server"
world-name: "\u00A7aGeyserMC \u00A7bDemo \u00A7f& \u00A7cTest \u00A7fServer"
version: 1.21.40
protocol: 748
version: 1.21.50
protocol: 766
players: 0
max-players: 20
ip: test.geysermc.org
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import org.cloudburstmc.protocol.bedrock.codec.BedrockCodec;
import org.cloudburstmc.protocol.bedrock.codec.v748.Bedrock_v748;
import org.cloudburstmc.protocol.bedrock.codec.v766.Bedrock_v766;

import java.net.URI;
import java.time.Instant;
Expand Down Expand Up @@ -56,5 +56,5 @@ public class Constants {
/**
* Used for the micro nethernet server that trasnfers the client to the real server
*/
public static final BedrockCodec BEDROCK_CODEC = Bedrock_v748.CODEC;
public static final BedrockCodec BEDROCK_CODEC = Bedrock_v766.CODEC;
}
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,8 @@ public PacketSignal handle(LoginPacket packet) {
dataHandler.sendPacket(status);

ResourcePacksInfoPacket info = new ResourcePacksInfoPacket();
info.setWorldTemplateId(UUID.randomUUID());
info.setWorldTemplateVersion("*");
dataHandler.sendPacket(info);

try {
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
protocol = "3.0.0.Beta5-20241022.154658-14"
protocol = "3.0.0.Beta5-20241203.200249-19"
geyser ="2.4.1-SNAPSHOT"
jackson = "2.14.0"
java-websocket = "1.5.3"
Expand All @@ -8,7 +8,7 @@ log4j = "2.20.0"
jline = "3.23.0"
terminalconsoleappender = "1.3.0"
methanol = "1.7.0"
minecraftauth = "4.1.1-20240822.193417-8"
minecraftauth = "4.1.2-SNAPSHOT"
gson = "2.11.0"
ice4j = "15836a645f"
bouncycastle = "1.78.1"
Expand Down

0 comments on commit 87194d8

Please sign in to comment.