use 1.19.4 as version by default because of known issues of configuration stage (like auth doesnt work with some bungee setups, incorrect re-login handling)

This commit is contained in:
Vitaly Turovsky 2025-03-12 15:59:26 +03:00
commit fbb3d08bfa

View file

@ -36,7 +36,7 @@ export type ConnectOptions = {
export const getVersionAutoSelect = (autoVersionSelect = options.serversAutoVersionSelect) => {
if (autoVersionSelect === 'auto') {
return '1.20.4'
return '1.19.4'
}
if (autoVersionSelect === 'latest') {
return supportedVersions.at(-1)!