From ea93d78402986f6476f89e486b36818e3c3d5803 Mon Sep 17 00:00:00 2001
From: dearmochi <1496804+dearmochi@users.noreply.github.com>
Date: Sat, 30 Sep 2023 21:35:49 +0900
Subject: [PATCH] Fix death by brain damage spamming message (#22587)
* Fix death by brain damage message being spammed
* chore: remove redundant message
---
code/modules/mob/living/carbon/human/human_damage.dm | 2 --
1 file changed, 2 deletions(-)
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")