diff --git a/code/modules/mob/dead/observer/observer.dm b/code/modules/mob/dead/observer/observer.dm index c1d577834d..825754c0d4 100644 --- a/code/modules/mob/dead/observer/observer.dm +++ b/code/modules/mob/dead/observer/observer.dm @@ -453,9 +453,9 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp if(host) if(config.uneducated_mice) host.universal_understand = 0 + announce_ghost_joinleave(src, 0, "They are now a mouse.") host.ckey = src.ckey host << "You are now a mouse. Try to avoid interaction with players, and do not give hints away that you are more than a simple rodent." - announce_ghost_joinleave(host, 0, "They are now a mouse.") /mob/dead/observer/verb/view_manfiest() set name = "View Crew Manifest" diff --git a/code/modules/mob/living/simple_animal/simple_animal.dm b/code/modules/mob/living/simple_animal/simple_animal.dm index 26a9d062ff..2dcb99b091 100644 --- a/code/modules/mob/living/simple_animal/simple_animal.dm +++ b/code/modules/mob/living/simple_animal/simple_animal.dm @@ -308,9 +308,8 @@ /mob/living/simple_animal/death() icon_state = icon_dead - stat = DEAD density = 0 - return ..() + return ..(deathmessage = "no message") /mob/living/simple_animal/ex_act(severity) if(!blinded)