Skip to content

Commit

Permalink
Update support version 1.21.30
Browse files Browse the repository at this point in the history
  • Loading branch information
Pugmatt committed Sep 17, 2024
1 parent 98e554c commit cc8d9be
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/assets/supportedVersion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.21.23.01
1.21.30.03
2 changes: 1 addition & 1 deletion serverlist-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
<dependency>
<groupId>org.cloudburstmc.protocol</groupId>
<artifactId>bedrock-connection</artifactId>
<version>3.0.0.Beta3-SNAPSHOT</version>
<version>3.0.0.Beta5-SNAPSHOT</version>
<scope>compile</scope>
</dependency>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public class BedrockConnect {

public static int globalPacketLimit = RakConstants.DEFAULT_GLOBAL_PACKET_LIMIT;

public static String release = "1.49";
public static String release = "1.50";

public static HashMap<String, String> featuredServerIps;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
import org.cloudburstmc.protocol.bedrock.codec.v685.Bedrock_v685;
import org.cloudburstmc.protocol.bedrock.codec.v686.Bedrock_v686;
import org.cloudburstmc.protocol.bedrock.codec.v712.Bedrock_v712;
import org.cloudburstmc.protocol.bedrock.codec.v729.Bedrock_v729;

import java.util.ArrayList;
import java.util.List;
Expand All @@ -32,9 +33,9 @@ public class BedrockProtocol {
/**
* Latest available version
*/
public static final BedrockCodec DEFAULT_BEDROCK_CODEC = Bedrock_v712.CODEC.toBuilder()
.minecraftVersion("1.21.20")
.build();
public static final BedrockCodec DEFAULT_BEDROCK_CODEC = Bedrock_v729.CODEC.toBuilder()
.minecraftVersion("1.21.30")
.build();


/**
Expand Down Expand Up @@ -86,6 +87,9 @@ public class BedrockProtocol {
SUPPORTED_BEDROCK_CODECS.add(Bedrock_v686.CODEC.toBuilder()
.minecraftVersion("1.21.2/1.21.3")
.build());
SUPPORTED_BEDROCK_CODECS.add(Bedrock_v712.CODEC.toBuilder()
.minecraftVersion("1.21.20 - 1.21.23")
.build());
SUPPORTED_BEDROCK_CODECS.add(DEFAULT_BEDROCK_CODEC);
}

Expand Down

0 comments on commit cc8d9be

Please sign in to comment.