From ed52f30d6eba84eacdb056076f5d7f6a919712b3 Mon Sep 17 00:00:00 2001 From: DArkHekRoMaNT Date: Mon, 21 Aug 2023 11:58:53 +0300 Subject: [PATCH] fixed mod path in launchSettings.json --- ModTemplate/Properties/launchSettings.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ModTemplate/Properties/launchSettings.json b/ModTemplate/Properties/launchSettings.json index a74d37c..9f0cd9b 100644 --- a/ModTemplate/Properties/launchSettings.json +++ b/ModTemplate/Properties/launchSettings.json @@ -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)" } } -} \ No newline at end of file +}