From bc058e4978a1b0c8e676cb51d2bf944d7b54cb08 Mon Sep 17 00:00:00 2001 From: Maciekxdabu <40292375+Maciekxdabu@users.noreply.github.com> Date: Fri, 10 Jun 2022 11:28:52 +0200 Subject: [PATCH] merloj: Deleted unused Debug Logs --- theProject/Assets/Scripts/TickSystem/TTLList.cs | 2 -- 1 file changed, 2 deletions(-) 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(); }