From 1da5de0ac3d42bf4621d4e6f893b9d548ab434e0 Mon Sep 17 00:00:00 2001 From: Kashargul <144968721+Kashargul@users.noreply.github.com> Date: Wed, 21 Jan 2026 17:41:22 +0100 Subject: [PATCH] don't send empty messsages to chat (#19074) * don't send empty messsages to chat * . --- .../simple_mob/subtypes/animal/alien animals/stardog.dm | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/stardog.dm b/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/stardog.dm index 1c49a26d3b3..e3eb7a89bff 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/stardog.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/stardog.dm @@ -1447,6 +1447,11 @@ we_process = FALSE return PROCESS_KILL +/turf/simulated/floor/water/digestive_enzymes/Destroy() + if(we_process) + STOP_PROCESSING(SSturfs, src) + . = ..() + /turf/simulated/floor/water/digestive_enzymes/proc/can_digest(atom/movable/digest_target) . = FALSE if(digest_target.loc != src) @@ -1504,7 +1509,7 @@ var/mob/living/carbon/human/H = thing if(!H) return - visible_message(runemessage = "blub...") + balloon_alert_visible("*blub...*") if(H.stat == DEAD) H.unacidable = TRUE //Don't touch this one again, we're gonna delete it in a second H.release_vore_contents() @@ -1534,7 +1539,7 @@ var/mob/living/L = thing if(!L) return - visible_message(runemessage = "blub...") + balloon_alert_visible("*blub...*") if(L.stat == DEAD) L.unacidable = TRUE //Don't touch this one again, we're gonna delete it in a second L.release_vore_contents()