Skip to content

Commit 305495c

Browse files
committed
Indicate support for Bedrock 1.21.3
1 parent efc8ba0 commit 305495c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The ultimate goal of this project is to allow Minecraft: Bedrock Edition users t
1414

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

17-
### Currently supporting Minecraft Bedrock 1.20.80 - 1.21.2 and Minecraft Java 1.21
17+
### Currently supporting Minecraft Bedrock 1.20.80 - 1.21.3 and Minecraft Java 1.21
1818

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

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,9 @@ public final class GameProtocol {
7373
SUPPORTED_BEDROCK_CODECS.add(CodecProcessor.processCodec(Bedrock_v685.CODEC.toBuilder()
7474
.minecraftVersion("1.21.0/1.21.1")
7575
.build()));
76-
SUPPORTED_BEDROCK_CODECS.add(DEFAULT_BEDROCK_CODEC);
76+
SUPPORTED_BEDROCK_CODECS.add(DEFAULT_BEDROCK_CODEC.toBuilder()
77+
.minecraftVersion("1.21.2/1.21.3")
78+
.build());
7779
}
7880

7981
/**

0 commit comments

Comments
 (0)