From 3e32a823630ff59d1135f6e9cd7690a88e98e931 Mon Sep 17 00:00:00 2001 From: ShizCalev Date: Mon, 22 Jan 2018 03:46:31 -0500 Subject: [PATCH] Corrects addtime stack_trace typo --- code/controllers/subsystem/timer.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/controllers/subsystem/timer.dm b/code/controllers/subsystem/timer.dm index 5c4d7064e4a..fbe681d0d44 100644 --- a/code/controllers/subsystem/timer.dm +++ b/code/controllers/subsystem/timer.dm @@ -452,11 +452,11 @@ SUBSYSTEM_DEF(timer) CRASH("addtimer called without a callback") if (wait < 0) - stack_trace("Addtimer called with a negitive wait. Converting to 0") + stack_trace("addtimer called with a negative wait. Converting to 0") //alot of things add short timers on themselves in their destroy, we ignore those cases if (wait >= 1 && callback && callback.object && callback.object != GLOBAL_PROC && QDELETED(callback.object)) - stack_trace("Add timer called with a callback assigned to a qdeleted object") + stack_trace("addtimer called with a callback assigned to a qdeleted object") wait = max(wait, 0)