From 00cc1265f357250f26fbb6a7f715b34844a2c26c Mon Sep 17 00:00:00 2001 From: Joonas Rikkonen Date: Mon, 19 Nov 2018 22:08:06 +0200 Subject: [PATCH] Don't show an error message if the save folder is not presented (it's created automatically when saving for the first time) --- Barotrauma/BarotraumaShared/Source/Utils/SaveUtil.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Barotrauma/BarotraumaShared/Source/Utils/SaveUtil.cs b/Barotrauma/BarotraumaShared/Source/Utils/SaveUtil.cs index e734062a4..5ff26d5bf 100644 --- a/Barotrauma/BarotraumaShared/Source/Utils/SaveUtil.cs +++ b/Barotrauma/BarotraumaShared/Source/Utils/SaveUtil.cs @@ -141,7 +141,7 @@ namespace Barotrauma if (!Directory.Exists(folder)) { - DebugConsole.ThrowError("Save folder \"" + folder + " not found! Attempting to create a new folder"); + DebugConsole.Log("Save folder \"" + folder + " not found! Attempting to create a new folder"); try { Directory.CreateDirectory(folder);