From 4ca432314aab3ad7997d5e201a53098e5fac0f9b Mon Sep 17 00:00:00 2001 From: Chen Marisa <18307183+flleeppyy@users.noreply.github.com> Date: Wed, 15 Jan 2025 06:11:45 -0800 Subject: [PATCH] fix: add defcon to failsafe plexora calls (#4896) --- code/controllers/failsafe.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/controllers/failsafe.dm b/code/controllers/failsafe.dm index ab9819d9141f..10813bb7efaf 100644 --- a/code/controllers/failsafe.dm +++ b/code/controllers/failsafe.dm @@ -102,7 +102,7 @@ GLOBAL_REAL(Failsafe, /datum/controller/failsafe) // Monkestation edit: start - plexora var/msg = "Notice: DEFCON [defcon_pretty()]. The Master Controller has not fired in the last [(5-defcon) * processing_interval] ticks." message_admins(span_adminnotice(msg)) - SSplexora.mc_alert(msg) + SSplexora.mc_alert(msg, defcon) // Monkestation edit: end --defcon @@ -110,7 +110,7 @@ GLOBAL_REAL(Failsafe, /datum/controller/failsafe) // Monkestation edit: start - plexora var/msg = "Warning: DEFCON [defcon_pretty()]. The Master Controller has not fired in the last [(5-defcon) * processing_interval] ticks. Automatic restart in [processing_interval] ticks." to_chat(GLOB.admins, span_boldannounce(msg)) - SSplexora.mc_alert(msg) + SSplexora.mc_alert(msg, defcon) // Monkestation edit: end --defcon