[MIRROR] byond 1670 support (#12037)

Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
CHOMPStation2StaffMirrorBot
2025-11-27 11:19:23 +01:00
committed by GitHub
co-authored by Kashargul
parent 03abe9a4d4
commit 59ae2027de
9 changed files with 57 additions and 19 deletions
+3 -3
View File
@@ -379,7 +379,7 @@ SUBSYSTEM_DEF(timer)
var/spent = 0
/// Holds info about this timer, stored from the moment it was created
/// Used to create a visible "name" whenever the timer is stringified
var/list/timer_info
var/alist/timer_info
/// Next timed event in the bucket
var/datum/timedevent/next
/// Previous timed event in the bucket
@@ -521,7 +521,7 @@ SUBSYSTEM_DEF(timer)
/datum/timedevent/proc/bucketJoin()
#if defined(TIMER_DEBUG)
// Generate debug-friendly list for timer, more complex but also more expensive
timer_info = list(
timer_info = alist(
1 = id,
2 = timeToRun,
3 = wait,
@@ -536,7 +536,7 @@ SUBSYSTEM_DEF(timer)
)
#else
// Generate a debuggable list for the timer, simpler but wayyyy cheaper, string generation (and ref/copy memes) is a bitch and this saves a LOT of time
timer_info = list(
timer_info = alist(
1 = id,
2 = timeToRun,
3 = wait,