From 1401c3dccfab9b96cbed7085e719361212b8545a Mon Sep 17 00:00:00 2001 From: oranges Date: Sun, 18 Dec 2016 22:06:56 +0000 Subject: [PATCH] Actually useful stack trace for debugging --- code/controllers/subsystem/garbage.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/controllers/subsystem/garbage.dm b/code/controllers/subsystem/garbage.dm index a55b352cd41..3cf0c9061a3 100644 --- a/code/controllers/subsystem/garbage.dm +++ b/code/controllers/subsystem/garbage.dm @@ -200,7 +200,7 @@ var/datum/subsystem/garbage_collector/SSgarbage testing("WARNING: [D.type] is not returning a qdel hint. It is being placed in the queue. Further instances of this type will also be queued.") SSgarbage.QueueForQueuing(D) else if(D.gc_destroyed == GC_CURRENTLY_BEING_QDELETED) - throw EXCEPTION("[D.type] destroy proc was called multiple times, likely due to a qdel loop in the Destroy logic") + CRASH("[D.type] destroy proc was called multiple times, likely due to a qdel loop in the Destroy logic") // Returns 1 if the object has been queued for deletion. /proc/qdeleted(datum/D)