From d4acaba0e4d44df6c572b615ed8dd00a6ae78aba Mon Sep 17 00:00:00 2001 From: ninjanomnom Date: Mon, 8 Jan 2018 15:12:31 -0500 Subject: [PATCH] makes the tag warning a stack_trace --- code/__HELPERS/unsorted.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/__HELPERS/unsorted.dm b/code/__HELPERS/unsorted.dm index b7e30940ac2..ab5c0379652 100644 --- a/code/__HELPERS/unsorted.dm +++ b/code/__HELPERS/unsorted.dm @@ -1500,7 +1500,7 @@ GLOBAL_DATUM_INIT(dview_mob, /mob/dview, new) var/datum/thing = input if(thing.use_tag) if(!thing.tag) - WARNING("A ref was requested of an object with use_tag set but no tag: [thing]") + stack_trace("A ref was requested of an object with use_tag set but no tag: [thing]") thing.use_tag = FALSE else return "\[[url_encode(thing.tag)]\]"