diff --git a/code/modules/mob/living/carbon/human/human_damage.dm b/code/modules/mob/living/carbon/human/human_damage.dm
index e369e4e2acb..8a7d57efd64 100644
--- a/code/modules/mob/living/carbon/human/human_damage.dm
+++ b/code/modules/mob/living/carbon/human/human_damage.dm
@@ -27,7 +27,6 @@
amount *= dna.species.brain_mod
sponge.damage = clamp(sponge.damage + amount, 0, 120)
if(sponge.damage >= 120)
- visible_message("[src] goes limp, [p_their()] facial expression utterly blank.")
death()
if(updating)
update_stat("adjustBrainLoss")
@@ -45,7 +44,6 @@
amount *= dna.species.brain_mod
sponge.damage = clamp(amount, 0, 120)
if(sponge.damage >= 120)
- visible_message("[src] goes limp, [p_their()] facial expression utterly blank.")
death()
if(updating)
update_stat("setBrainLoss")