From 06dc7105d6dd6fc7f568ecfcdc37d46d503f2e43 Mon Sep 17 00:00:00 2001 From: Cyberboss Date: Mon, 13 Nov 2017 11:04:33 -0500 Subject: [PATCH] Remove bad config exception filtering --- TGS.Server/Server.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TGS.Server/Server.cs b/TGS.Server/Server.cs index fe29d4a352..9017d65ed7 100644 --- a/TGS.Server/Server.cs +++ b/TGS.Server/Server.cs @@ -166,7 +166,7 @@ namespace TGS.Server { Config = ServerConfig.Load(DefaultConfigDirectory); } - catch (FileNotFoundException) + catch { try { @@ -174,7 +174,7 @@ namespace TGS.Server Config = ServerConfig.Load(MigrationConfigDirectory); Directory.Delete(MigrationConfigDirectory, true); } - catch(FileNotFoundException) + catch { //new baby Config = new ServerConfig();