Skip to content

Commit

Permalink
fix: add defcon to failsafe plexora calls (Monkestation#4896)
Browse files Browse the repository at this point in the history
  • Loading branch information
flleeppyy authored Jan 15, 2025
1 parent 83b4c76 commit 4ca4323
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/controllers/failsafe.dm
Original file line number Diff line number Diff line change
Expand Up @@ -102,15 +102,15 @@ 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

if(2)
// 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

Expand Down

0 comments on commit 4ca4323

Please sign in to comment.