Skip to content

Commit e7ecb55

Browse files
committed
Indicate support for Bedrock 1.21.41
1 parent d94c6ff commit e7ecb55

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The ultimate goal of this project is to allow Minecraft: Bedrock Edition users t
1515
Special thanks to the DragonProxy project for being a trailblazer in protocol translation and for all the team members who have joined us here!
1616

1717
## Supported Versions
18-
Geyser is currently supporting Minecraft Bedrock 1.20.80 - 1.21.40 and Minecraft Java 1.21/1.21.1. For more information, please see [here](https://geysermc.org/wiki/geyser/supported-versions/).
18+
Geyser is currently supporting Minecraft Bedrock 1.20.80 - 1.21.41 and Minecraft Java 1.21/1.21.1. For more information, please see [here](https://geysermc.org/wiki/geyser/supported-versions/).
1919

2020
## Setting Up
2121
Take a look [here](https://geysermc.org/wiki/geyser/setup/) for how to set up Geyser.

core/src/main/java/org/geysermc/geyser/network/GameProtocol.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public final class GameProtocol {
5252
* release of the game that Geyser supports.
5353
*/
5454
public static final BedrockCodec DEFAULT_BEDROCK_CODEC = CodecProcessor.processCodec(Bedrock_v748.CODEC.toBuilder()
55-
.minecraftVersion("1.21.40")
55+
.minecraftVersion("1.21.41")
5656
.build());
5757

5858
/**
@@ -80,10 +80,10 @@ public final class GameProtocol {
8080
.minecraftVersion("1.21.20 - 1.21.23")
8181
.build()));
8282
SUPPORTED_BEDROCK_CODECS.add(CodecProcessor.processCodec(Bedrock_v729.CODEC.toBuilder()
83-
.minecraftVersion("1.21.30/1.21.31")
84-
.build()));
83+
.minecraftVersion("1.21.30/1.21.31")
84+
.build()));
8585
SUPPORTED_BEDROCK_CODECS.add(DEFAULT_BEDROCK_CODEC.toBuilder()
86-
.minecraftVersion("1.21.40")
86+
.minecraftVersion("1.21.40/1.21.41")
8787
.build());
8888
}
8989

0 commit comments

Comments
 (0)