Skip to content

Commit

Permalink
Update support version 1.20.80
Browse files Browse the repository at this point in the history
  • Loading branch information
Pugmatt committed Apr 23, 2024
1 parent 4f11b4a commit 8fc7a04
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.73.01
1.20.80.05
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public class BedrockConnect {

public static int globalPacketLimit = RakConstants.DEFAULT_GLOBAL_PACKET_LIMIT;

public static String release = "1.42.1";
public static String release = "1.43";

public static HashMap<String, String> featuredServerIps;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
import org.cloudburstmc.protocol.bedrock.codec.v630.Bedrock_v630;
import org.cloudburstmc.protocol.bedrock.codec.v649.Bedrock_v649;
import org.cloudburstmc.protocol.bedrock.codec.v662.Bedrock_v662;
import org.cloudburstmc.protocol.bedrock.codec.v671.Bedrock_v671;

import java.util.ArrayList;
import java.util.List;
Expand All @@ -27,7 +28,7 @@ public class BedrockProtocol {
/**
* Latest available version
*/
public static final BedrockCodec DEFAULT_BEDROCK_CODEC = Bedrock_v662.CODEC;
public static final BedrockCodec DEFAULT_BEDROCK_CODEC = Bedrock_v671.CODEC;

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

Expand Down

0 comments on commit 8fc7a04

Please sign in to comment.