Skip to content

Commit

Permalink
Indicate 1.21.51 support
Browse files Browse the repository at this point in the history
  • Loading branch information
onebeastchris committed Dec 11, 2024
1 parent 4d12c29 commit b36bc9e
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public final class GameProtocol {
* release of the game that Geyser supports.
*/
public static final BedrockCodec DEFAULT_BEDROCK_CODEC = CodecProcessor.processCodec(Bedrock_v766.CODEC.toBuilder()
.minecraftVersion("1.21.50")
.minecraftVersion("1.21.51")
.build());

/**
Expand All @@ -66,7 +66,9 @@ public final class GameProtocol {
SUPPORTED_BEDROCK_CODECS.add(CodecProcessor.processCodec(Bedrock_v748.CODEC.toBuilder()
.minecraftVersion("1.21.40 - 1.21.44")
.build()));
SUPPORTED_BEDROCK_CODECS.add(DEFAULT_BEDROCK_CODEC);
SUPPORTED_BEDROCK_CODECS.add(DEFAULT_BEDROCK_CODEC.toBuilder()
.minecraftVersion("1.21.50 - 1.21.51")
.build());
}

/**
Expand Down

0 comments on commit b36bc9e

Please sign in to comment.