From 02ee8607b357a37d726e203afb11f1b65194838e Mon Sep 17 00:00:00 2001 From: Cyberboss Date: Mon, 5 Jun 2017 13:54:17 -0400 Subject: [PATCH] Timers will no longer enter an infinite loop of message boxes --- TGControlPanel/ByondPage.cs | 1 + TGControlPanel/ServerPage.cs | 1 + 2 files changed, 2 insertions(+) diff --git a/TGControlPanel/ByondPage.cs b/TGControlPanel/ByondPage.cs index ef0539e184..7592d4720e 100644 --- a/TGControlPanel/ByondPage.cs +++ b/TGControlPanel/ByondPage.cs @@ -116,6 +116,7 @@ namespace TGControlPanel } catch (Exception ex) { + BYONDTimer.Stop(); Program.ServiceDisconnectException(ex); } } diff --git a/TGControlPanel/ServerPage.cs b/TGControlPanel/ServerPage.cs index 0dabbbc853..7bf4c3cf2e 100644 --- a/TGControlPanel/ServerPage.cs +++ b/TGControlPanel/ServerPage.cs @@ -217,6 +217,7 @@ namespace TGControlPanel } catch (Exception ex) { + ServerTimer.Stop(); Program.ServiceDisconnectException(ex); } }