mirror of
https://github.com/artegoser/pimi-launcher-core.git
synced 2024-11-22 12:16:21 +03:00
Merge pull request #41 from grallc/custom-lauch-args-fix
Fixed custom launch args builder - #39
This commit is contained in:
commit
9e21e8189c
1 changed files with 1 additions and 1 deletions
|
@ -513,7 +513,7 @@ class Handler {
|
|||
'--proxyPass',
|
||||
this.options.proxy.password
|
||||
);
|
||||
if(this.options.customLaunchArgs) args.concat(this.options.customLaunchArgs)
|
||||
if(this.options.customLaunchArgs) this.options.customLaunchArgs.forEach(customArg => args = args.concat(customArg.split(' ')))
|
||||
this.client.emit('debug', '[MCLC]: Set launch options');
|
||||
resolve(args);
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue