Disabled debug mode

This commit is contained in:
Marcel Baumgartner
2023-04-21 17:37:13 +02:00
parent 7ea68e1a54
commit f41dbe07f8

View File

@@ -8,7 +8,7 @@ public class EventSystem
private Dictionary<int, object> Storage = new();
private List<Subscriber> Subscribers = new();
private readonly bool Debug = true;
private readonly bool Debug = false;
private readonly bool DisableWarning = false;
private readonly TimeSpan TookToLongTime = TimeSpan.FromSeconds(1);