From 8b073c835a19f4cef649580887558b6cea3391d8 Mon Sep 17 00:00:00 2001 From: Halonexus Date: Thu, 19 Dec 2024 19:00:21 +0300 Subject: [PATCH] Ghost breach notifications (#2624) ghost breach notifications --- .../mob/living/simple_animal/abnormality/_abnormality.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/living/simple_animal/abnormality/_abnormality.dm b/code/modules/mob/living/simple_animal/abnormality/_abnormality.dm index c19823d2880f..8afc96970f05 100644 --- a/code/modules/mob/living/simple_animal/abnormality/_abnormality.dm +++ b/code/modules/mob/living/simple_animal/abnormality/_abnormality.dm @@ -499,6 +499,8 @@ toggle_ai(AI_ON) // Run. status_flags &= ~GODMODE SEND_GLOBAL_SIGNAL(COMSIG_GLOB_ABNORMALITY_BREACH, src) + if(istype(datum_reference)) + deadchat_broadcast(" has breached containment.", "[src.name]", src, get_turf(src)) FearEffect() return TRUE