Don't show an error message if the save folder is not presented (it's created automatically when saving for the first time)

This commit is contained in:
Joonas Rikkonen
2018-11-19 22:08:06 +02:00
parent 5b60d0aef4
commit 00cc1265f3
@@ -141,7 +141,7 @@ namespace Barotrauma
if (!Directory.Exists(folder)) 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 try
{ {
Directory.CreateDirectory(folder); Directory.CreateDirectory(folder);