fix: auto connect for 1.20+

This commit is contained in:
jebibot 2023-11-24 20:51:53 +09:00
parent 7e95771957
commit d72e927a20

View File

@ -307,12 +307,17 @@ class ProcessBuilder {
_processAutoConnectArg(args){ _processAutoConnectArg(args){
if(ConfigManager.getAutoConnect() && this.server.rawServer.autoconnect){ if(ConfigManager.getAutoConnect() && this.server.rawServer.autoconnect){
if(mcVersionAtLeast('1.20', this.server.rawServer.minecraftVersion)){
args.push('--quickPlayMultiplayer')
args.push(`${this.server.hostname}:${this.server.port}`)
} else {
args.push('--server') args.push('--server')
args.push(this.server.hostname) args.push(this.server.hostname)
args.push('--port') args.push('--port')
args.push(this.server.port) args.push(this.server.port)
} }
} }
}
/** /**
* Construct the argument array that will be passed to the JVM process. * Construct the argument array that will be passed to the JVM process.