Skip to content

Commit

Permalink
add support for 1.20.50
Browse files Browse the repository at this point in the history
  • Loading branch information
Konicai committed Nov 20, 2023
1 parent c9f9df6 commit ed49e8f
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-20231016.115644-107"
protocol-connection = "3.0.0.Beta1-20231016.115644-106"
protocol = "3.0.0.Beta1-20231107.190703-113"
protocol-connection = "3.0.0.Beta1-20231107.190703-112"
netty = "4.1.80.Final"
fastutil = "8.5.2"
mcprotocollib = "1.20.2-1-20231003.141424-6"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
import org.cloudburstmc.protocol.bedrock.codec.v594.Bedrock_v594;
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;

/**
* Contains information about the supported Bedrock protocols in GlobalLinkServer.
Expand All @@ -41,7 +42,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_v622.CODEC;
public static final BedrockCodec LATEST_CODEC = Bedrock_v630.CODEC;

/**
* A list of all supported Bedrock versions that can join GlobalLinkServer
Expand All @@ -52,6 +53,7 @@ public class BedrockVersionUtils {
SUPPORTED_BEDROCK_CODECS.add(Bedrock_v589.CODEC);
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(LATEST_CODEC);
}

Expand Down

0 comments on commit ed49e8f

Please sign in to comment.