Fixed custom launch args builder - #39

This commit is contained in:
Corentin Grall 2020-04-07 16:41:04 +02:00
parent c35332a8e5
commit 3d2aa75d09

View file

@ -515,6 +515,8 @@ class Handler {
this.options.proxy.password
);
if(this.options.customLaunchArgs) this.options.customLaunchArgs.forEach(customArg => args = args.concat(customArg.split(' ')))
this.client.emit('debug', '[MCLC]: Set launch options');
resolve(args);
});