From e785c2787a0ff40f8d5d9eeea79db403b03db783 Mon Sep 17 00:00:00 2001 From: Pinta <124479862+deertools@users.noreply.github.com> Date: Mon, 25 Mar 2024 23:44:30 -0400 Subject: [PATCH] w h y did that fix it ???????? --- code/__HELPERS/sorts/__main.dm | 2 -- code/controllers/subsystem/timer.dm | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/code/__HELPERS/sorts/__main.dm b/code/__HELPERS/sorts/__main.dm index bb196c35..c4c26d88 100644 --- a/code/__HELPERS/sorts/__main.dm +++ b/code/__HELPERS/sorts/__main.dm @@ -143,8 +143,6 @@ GLOBAL_DATUM_INIT(sortInstance, /datum/sortInstance, new()) var/list/L = src.L var/last = fetchElement(L,lo) var/current = fetchElement(L,runHi++) - SEND_TEXT(world.log, "current = [current]") - SEND_TEXT(world.log, "last = [last]") if(call(cmp)(current, last) < 0) while(runHi < hi) diff --git a/code/controllers/subsystem/timer.dm b/code/controllers/subsystem/timer.dm index a5c66a14..90ee4b48 100644 --- a/code/controllers/subsystem/timer.dm +++ b/code/controllers/subsystem/timer.dm @@ -259,7 +259,7 @@ SUBSYSTEM_DEF(timer) if (!length(alltimers)) return - sortTim(alltimers,PROC_REF(cmp_timer)) + sortTim(alltimers, .proc/cmp_timer) var/datum/timedevent/head = alltimers[1]