From fb298aa563bb95c915de0a2a2ba3ac3670d5b5b5 Mon Sep 17 00:00:00 2001 From: morrowwolf Date: Wed, 13 Sep 2023 13:00:07 -0400 Subject: [PATCH] Ghost notification for yautja self destruct (#4403) # About the pull request This PR adds a ghost notification for yautja self destructs # Explain why it's good for the game Everyone wants to watch this! # Testing Photographs and Procedure
Screenshots & Videos Put screenshots and videos here with an empty line between the screenshots and the `
` tags.
# Changelog :cl: Morrow add: Added a ghost notification for yautja self destructs /:cl: --- code/modules/cm_preds/yaut_bracers.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/cm_preds/yaut_bracers.dm b/code/modules/cm_preds/yaut_bracers.dm index c9976c7fea89..4e8dbf9d711a 100644 --- a/code/modules/cm_preds/yaut_bracers.dm +++ b/code/modules/cm_preds/yaut_bracers.dm @@ -677,6 +677,8 @@ if (exploding) return + notify_ghosts(header = "Yautja self destruct", message = "[victim] is self destructing to protect their honor!", source = victim, action = NOTIFY_ORBIT) + exploding = 1 var/turf/T = get_turf(src) if(explosion_type == SD_TYPE_BIG && victim.stat == CONSCIOUS && (is_ground_level(T.z) || MODE_HAS_TOGGLEABLE_FLAG(MODE_SHIPSIDE_SD)))