From 15df57b021e93db38f2f8b437f96c093fc4e494f Mon Sep 17 00:00:00 2001 From: Atermonera Date: Sat, 23 May 2020 18:26:11 -0700 Subject: [PATCH] Fixes runtime in ticker.dm, 424: Cannot read null.mob_type --- code/controllers/subsystems/ticker.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/controllers/subsystems/ticker.dm b/code/controllers/subsystems/ticker.dm index 7103565d2d..b8fd1642e1 100644 --- a/code/controllers/subsystems/ticker.dm +++ b/code/controllers/subsystems/ticker.dm @@ -421,7 +421,7 @@ var/global/datum/controller/subsystem/ticker/ticker qdel(player) // If they're a carbon, they can get manifested - if(J.mob_type & JOB_CARBON) + if(J?.mob_type & JOB_CARBON) data_core.manifest_inject(new_char) /datum/controller/subsystem/ticker/proc/collect_minds()