From f41dbe07f8ade04ecd1d73e75212d61fac207a8e Mon Sep 17 00:00:00 2001 From: Marcel Baumgartner Date: Fri, 21 Apr 2023 17:37:13 +0200 Subject: [PATCH] Disabled debug mode --- Moonlight/App/Events/EventSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Moonlight/App/Events/EventSystem.cs b/Moonlight/App/Events/EventSystem.cs index 377e9eb3..74c67e0b 100644 --- a/Moonlight/App/Events/EventSystem.cs +++ b/Moonlight/App/Events/EventSystem.cs @@ -8,7 +8,7 @@ public class EventSystem private Dictionary Storage = new(); private List Subscribers = new(); - private readonly bool Debug = true; + private readonly bool Debug = false; private readonly bool DisableWarning = false; private readonly TimeSpan TookToLongTime = TimeSpan.FromSeconds(1);