Indicate Geyser supports 1.18.10 AND .12

This commit is contained in:
Camotoy 2022-03-04 23:24:38 -05:00
parent a58239f15b
commit edbb946d97
1 changed files with 3 additions and 1 deletions

View File

@ -57,7 +57,9 @@ public final class MinecraftProtocol {
static {
SUPPORTED_BEDROCK_CODECS.add(Bedrock_v471.V471_CODEC);
SUPPORTED_BEDROCK_CODECS.add(Bedrock_v475.V475_CODEC.toBuilder().minecraftVersion("1.18.0/1.18.1/1.18.2").build());
SUPPORTED_BEDROCK_CODECS.add(DEFAULT_BEDROCK_CODEC);
SUPPORTED_BEDROCK_CODECS.add(DEFAULT_BEDROCK_CODEC.toBuilder()
.minecraftVersion("1.18.10/1.18.12") // 1.18.11 is also supported, but was only on Switch and since that auto-updates it's not needed
.build());
}
/**