Skip to content

Commit

Permalink
Added support for 1.20.60
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim203 committed Feb 6, 2024
1 parent c268066 commit b9abed0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[versions]
gson = "2.10.1"
protocol = "3.0.0.Beta1-20231107.190703-113"
protocol-connection = "3.0.0.Beta1-20231107.190703-112"
protocol = "3.0.0.Beta1-20240204.134050-120"
protocol-connection = "3.0.0.Beta1-20240204.134050-119"
netty = "4.1.80.Final"
fastutil = "8.5.2"
mcprotocollib = "1.20.4-1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
import org.cloudburstmc.protocol.bedrock.codec.v618.Bedrock_v618;
import org.cloudburstmc.protocol.bedrock.codec.v622.Bedrock_v622;
import org.cloudburstmc.protocol.bedrock.codec.v630.Bedrock_v630;
import org.cloudburstmc.protocol.bedrock.codec.v649.Bedrock_v649;

/**
* Contains information about the supported Bedrock protocols in GlobalLinkServer.
Expand All @@ -42,7 +43,7 @@ public class BedrockVersionUtils {
* Default Bedrock codec that should act as a fallback. Should represent the latest available
* release of the game that GlobalLinkServer supports.
*/
public static final BedrockCodec LATEST_CODEC = Bedrock_v630.CODEC;
public static final BedrockCodec LATEST_CODEC = Bedrock_v649.CODEC;

/**
* A list of all supported Bedrock versions that can join GlobalLinkServer
Expand All @@ -54,6 +55,7 @@ public class BedrockVersionUtils {
SUPPORTED_BEDROCK_CODECS.add(Bedrock_v594.CODEC);
SUPPORTED_BEDROCK_CODECS.add(Bedrock_v618.CODEC);
SUPPORTED_BEDROCK_CODECS.add(Bedrock_v622.CODEC);
SUPPORTED_BEDROCK_CODECS.add(Bedrock_v630.CODEC);
SUPPORTED_BEDROCK_CODECS.add(LATEST_CODEC);
}

Expand Down

0 comments on commit b9abed0

Please sign in to comment.