diff --git a/code/modules/mob/living/say.dm b/code/modules/mob/living/say.dm index 93d2303d086..69ba08bf690 100644 --- a/code/modules/mob/living/say.dm +++ b/code/modules/mob/living/say.dm @@ -276,7 +276,7 @@ var/list/department_radio_keys = list( continue //skip monkeys and leavers if (istype(M, /mob/new_player)) continue - if(M.stat == DEAD && (M.client.prefs & CHAT_GHOSTEARS)) + if(M.stat == DEAD && (M.client.prefs.toggles & CHAT_GHOSTEARS) && src.client) // src.client is so that ghosts don't have to listen to mice listening|=M var/turf/T = get_turf(src) diff --git a/maps/RandomZLevels/wildwest.dm b/maps/RandomZLevels/wildwest.dm index d040086f8c3..aa1bca66f86 100644 --- a/maps/RandomZLevels/wildwest.dm +++ b/maps/RandomZLevels/wildwest.dm @@ -68,7 +68,7 @@ if("Immortality") user << "Your wish is granted, but at a terrible cost..." user << "The Wish Granter punishes you for your selfishness, claiming your soul and warping your body to match the darkness in your heart." - user.verbs += /mob/living/carbon/verb/immortality + user.verbs += /mob/living/carbon/proc/immortality user.dna.mutantrace = "shadow" user.update_mutantrace() if("To Kill") @@ -142,7 +142,7 @@ /////For the Wishgranter/////////// -/mob/living/carbon/verb/immortality() +/mob/living/carbon/proc/immortality() set category = "Immortality" set name = "Resurrection"