From 8ead5177bd969958a7f09faddddc4e23200065aa Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Thu, 11 Mar 2021 07:54:47 +0100 Subject: [PATCH] [MIRROR] Makes client timers not able to perma block normal timers (#4057) * Makes client timers not able to perma block normal timers (#57588) * Makes client timers not able to perma block normal timers Co-authored-by: Emmett Gaines --- code/controllers/subsystem/timer.dm | 3 --- 1 file changed, 3 deletions(-) diff --git a/code/controllers/subsystem/timer.dm b/code/controllers/subsystem/timer.dm index 7ed80991b13..da283a67c7c 100644 --- a/code/controllers/subsystem/timer.dm +++ b/code/controllers/subsystem/timer.dm @@ -133,9 +133,6 @@ SUBSYSTEM_DEF(timer) clienttime_timers.Cut(1, next_clienttime_timer_index+1) next_clienttime_timer_index = 0 - if (MC_TICK_CHECK) - return - // Check for when we need to loop the buckets, this occurs when // the head_offset is approaching BUCKET_LEN ticks in the past if (practical_offset > BUCKET_LEN)