Skip to content

Commit

Permalink
Fixed the game not starting on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Ipmake committed Dec 26, 2023
1 parent f90a419 commit d85944d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "knockoutcitylauncher",
"version": "2.0.2",
"version": "2.0.3",
"description": "Unofficial Knockout City Launcher",
"main": "./out/main/index.js",
"author": "IPGsystems",
Expand Down
2 changes: 1 addition & 1 deletion src/main/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -754,7 +754,7 @@ function createWindow(): void {
gid: os.userInfo().gid,
shell: '/bin/bash'
})
: spawn(`KnockoutCity.exe ${args.join(' ')}`, args, {
: spawn(`KnockoutCity.exe`, args, {
detached: true,
stdio: 'ignore',
cwd: `${arg.path}/${arg.version == 1 ? 'highRes' : 'lowRes'}/KnockoutCity`,
Expand Down

0 comments on commit d85944d

Please sign in to comment.