diff --git a/theProject/Assets/Scripts/TickSystem/TTLList.cs b/theProject/Assets/Scripts/TickSystem/TTLList.cs index 96aeddc8..024e6900 100644 --- a/theProject/Assets/Scripts/TickSystem/TTLList.cs +++ b/theProject/Assets/Scripts/TickSystem/TTLList.cs @@ -20,12 +20,10 @@ public class TTLList where T : UnityEngine.Object public void AddToList(T obj) { - Debug.Log(obj); if (dict.ContainsKey(obj)) dict[obj] = basicTTL; else dict.Add(obj, basicTTL); - Debug.Log("Added/Changed object in dictionary", obj); UpdateViewList(); }