fixes the garbage subsystem not working, at all.

This commit is contained in:
CitadelStationBot
2017-04-17 15:33:01 -05:00
parent 21827263f5
commit 8260ebcc33
+1 -1
View File
@@ -140,7 +140,7 @@ SUBSYSTEM_DEF(garbage)
A.gc_destroyed = GC_QUEUED_FOR_QUEUING
/datum/controller/subsystem/garbage/proc/Queue(datum/A)
if (!isnull(A) || (!isnull(A.gc_destroyed) && A.gc_destroyed >= 0))
if (isnull(A) || (!isnull(A.gc_destroyed) && A.gc_destroyed >= 0))
return
if (A.gc_destroyed == GC_QUEUED_FOR_HARD_DEL)
HardDelete(A)