From 651eaaaa90eceb43b9ff5f817e88d11622d2acc6 Mon Sep 17 00:00:00 2001 From: Kazhnuz Date: Sat, 24 Aug 2019 21:05:30 +0200 Subject: [PATCH] improvement(timer): remove unused logs --- sonic-radiance.love/core/modules/world/actors/utils/timer.lua | 2 -- 1 file changed, 2 deletions(-) diff --git a/sonic-radiance.love/core/modules/world/actors/utils/timer.lua b/sonic-radiance.love/core/modules/world/actors/utils/timer.lua index e864b40..5ba7c3f 100644 --- a/sonic-radiance.love/core/modules/world/actors/utils/timer.lua +++ b/sonic-radiance.love/core/modules/world/actors/utils/timer.lua @@ -27,7 +27,6 @@ function Timer:new(actor, name, t) self.time = t self.actor = actor self.name = name - core.debug:print("timer", "timer " .. self.name .. "created") end function Timer:update(dt) @@ -38,7 +37,6 @@ function Timer:update(dt) end function Timer:finish() - core.debug:print("timer", "timer " .. self.name .. "finished, sending response") self.actor:timerResponse(self.name) self.actor.timers[self.name] = nil end