Merge pull request #25 from DArkHekRoMaNT/master-1

Fixed mod path in launchSettings.json
This commit is contained in:
Manuel Dielacher 2023-08-22 12:46:26 +02:00 committed by GitHub
commit 2c0c987e2a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,14 +3,14 @@
"Client": {
"commandName": "Executable",
"executablePath": "$(VINTAGE_STORY)/Vintagestory.exe",
"commandLineArgs": "--tracelog --addModPath $(ProjectDir)/bin/$(Configuration)/Mods",
"commandLineArgs": "--tracelog --addModPath \"$(ProjectDir)/bin/$(Configuration)/Mods\"",
"workingDirectory": "$(VINTAGE_STORY)"
},
"Server": {
"commandName": "Executable",
"executablePath": "$(VINTAGE_STORY)/VintagestoryServer.exe",
"commandLineArgs": "--tracelog --addModPath $(ProjectDir)/bin/$(Configuration)/Mods",
"commandLineArgs": "--tracelog --addModPath \"$(ProjectDir)/bin/$(Configuration)/Mods\"",
"workingDirectory": "$(VINTAGE_STORY)"
}
}
}
}