diff --git a/Assets/Scripts/EventSystem/EventSystem.cs b/Assets/Scripts/EventSystem/EventSystem.cs index 8726731684a1ccf61644067348375e23738dc26b..89bed8037a5ae0ee6ab04d94a845316e0fe9edd2 100644 --- a/Assets/Scripts/EventSystem/EventSystem.cs +++ b/Assets/Scripts/EventSystem/EventSystem.cs @@ -15,11 +15,8 @@ public static class EventSystem public static void EventHappened(EventType name) { - Debug.Log("happened"); if (events.ContainsKey(name)) { - - Debug.Log("contains: "+events.Values.ToString()); foreach (IAction e in events[name]){ e.React(name); }