From 51c463815daf37b5935ed9d9765573597343b855 Mon Sep 17 00:00:00 2001 From: Cyberboss Date: Sun, 4 Dec 2016 01:17:09 -0500 Subject: [PATCH] Better addtimer logging --- code/controllers/subsystem/timer.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/controllers/subsystem/timer.dm b/code/controllers/subsystem/timer.dm index 9b1f698d3ba..76dc5268963 100644 --- a/code/controllers/subsystem/timer.dm +++ b/code/controllers/subsystem/timer.dm @@ -80,7 +80,7 @@ var/datum/subsystem/timer/SStimer var/bad_args = unique != TIMER_NORMAL && unique != TIMER_UNIQUE if(args.len > 4 || bad_args) if(bad_args) - stack_trace("Invalid arguments in call to addtimer!") + stack_trace("Invalid arguments in call to addtimer! Attempt to call [thingToCall] proc [procToCall]") event.argList = args.Copy(4) else event.argList = args.Copy(5)