mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
Indicate support for Java 1.19.2
This commit is contained in:
parent
6856922f42
commit
3c27273eac
2 changed files with 2 additions and 3 deletions
|
|
@ -33,7 +33,6 @@ import com.nukkitx.protocol.bedrock.v534.Bedrock_v534;
|
|||
import org.geysermc.geyser.session.GeyserSession;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
import java.util.StringJoiner;
|
||||
|
||||
|
|
@ -101,7 +100,7 @@ public final class MinecraftProtocol {
|
|||
* @return the supported Minecraft: Java Edition version names
|
||||
*/
|
||||
public static List<String> getJavaVersions() {
|
||||
return Collections.singletonList(DEFAULT_JAVA_CODEC.getMinecraftVersion());
|
||||
return List.of(DEFAULT_JAVA_CODEC.getMinecraftVersion(), "1.19.2");
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue