Skip to content

Commit

Permalink
Update support version 1.20.60
Browse files Browse the repository at this point in the history
  • Loading branch information
Pugmatt committed Feb 6, 2024
1 parent a93c61b commit 1b6dcca
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/assets/supportedVersion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.20.51.01
1.20.61.01
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class BedrockConnect {
public static boolean storeDisplayNames = true;
public static File whitelistfile;

public static String release = "1.40";
public static String release = "1.41";

public static HashMap<String, String> featuredServerIps;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,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;

import java.util.ArrayList;
import java.util.List;
Expand All @@ -25,7 +26,7 @@ public class BedrockProtocol {
/**
* Latest available version
*/
public static final BedrockCodec DEFAULT_BEDROCK_CODEC = Bedrock_v630.CODEC;
public static final BedrockCodec DEFAULT_BEDROCK_CODEC = Bedrock_v649.CODEC;

/**
* A list of all supported Bedrock versions that can join BedrockConnect
Expand Down Expand Up @@ -63,6 +64,8 @@ public class BedrockProtocol {
.build());
SUPPORTED_BEDROCK_CODECS.add(Bedrock_v622.CODEC.toBuilder()
.build());
SUPPORTED_BEDROCK_CODECS.add(Bedrock_v630.CODEC.toBuilder()
.build());
SUPPORTED_BEDROCK_CODECS.add(DEFAULT_BEDROCK_CODEC);
}

Expand Down

0 comments on commit 1b6dcca

Please sign in to comment.