Fixes runtime in ticker.dm, 424: Cannot read null.mob_type

This commit is contained in:
Atermonera
2020-05-23 18:26:11 -07:00
committed by GitHub
parent 656cbe79ea
commit 15df57b021
+1 -1
View File
@@ -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()