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:
@@ -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);
|
||||||
|
|||||||
Reference in New Issue
Block a user