Skip to content

Commit

Permalink
Support 1.19.70 update
Browse files Browse the repository at this point in the history
  • Loading branch information
Pugmatt committed Mar 14, 2023
1 parent a4dfe0b commit d36b4da
Show file tree
Hide file tree
Showing 3 changed files with 5 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.19.63.01
1.19.70.02
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class BedrockConnect {
public static boolean fetchFeaturedIps = true;
public static File whitelistfile;

public static String release = "1.28";
public static String release = "1.29";

public static HashMap<String, String> featuredServerIps;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import org.cloudburstmc.protocol.bedrock.codec.v560.Bedrock_v560;
import org.cloudburstmc.protocol.bedrock.codec.v567.Bedrock_v567;
import org.cloudburstmc.protocol.bedrock.codec.v568.Bedrock_v568;
import org.cloudburstmc.protocol.bedrock.codec.v575.Bedrock_v575;

import java.util.ArrayList;
import java.util.List;
Expand All @@ -18,7 +19,7 @@ public class BedrockProtocol {
/**
* Latest available version
*/
public static final BedrockCodec DEFAULT_BEDROCK_CODEC = Bedrock_v568.CODEC;
public static final BedrockCodec DEFAULT_BEDROCK_CODEC = Bedrock_v575.CODEC;

/**
* A list of all supported Bedrock versions that can join BedrockConnect
Expand All @@ -42,6 +43,7 @@ public class BedrockProtocol {
SUPPORTED_BEDROCK_CODECS.add(Bedrock_v567.CODEC.toBuilder()
.minecraftVersion("1.19.52/1.19.62")
.build());
SUPPORTED_BEDROCK_CODECS.add(Bedrock_v568.CODEC);
SUPPORTED_BEDROCK_CODECS.add(DEFAULT_BEDROCK_CODEC);
}

Expand Down

0 comments on commit d36b4da

Please sign in to comment.