fixed mod path in launchSettings.json

This commit is contained in:
DArkHekRoMaNT 2023-08-21 11:58:53 +03:00 committed by GitHub
parent 4b95d0eff8
commit ed52f30d6e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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