diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm
index 7d969569d49..95a96f03c88 100644
--- a/code/modules/mob/mob.dm
+++ b/code/modules/mob/mob.dm
@@ -341,7 +341,7 @@
if ((stat != 2 || !( ticker )))
usr << "You must be dead to use this!"
return
- if (ticker.mode.deny_respawn) //BS12 EDIT
+ if (ticker.mode && ticker.mode.deny_respawn) //BS12 EDIT
usr << "Respawn is disabled for this roundtype."
return
else