From a7a604561aab42f5acfd6f9b1bbf8d02c31473d0 Mon Sep 17 00:00:00 2001 From: Gboster-0 <82319946+Gboster-0@users.noreply.github.com> Date: Thu, 31 Oct 2024 10:57:59 +0100 Subject: [PATCH] Fixes HR only telling people the current core suppression and next ordeal if an ordeal is currently in progress (#2525) fix --- code/modules/admin/chat_commands.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/admin/chat_commands.dm b/code/modules/admin/chat_commands.dm index 739d9c5e0ac3..49548f23b160 100644 --- a/code/modules/admin/chat_commands.dm +++ b/code/modules/admin/chat_commands.dm @@ -36,10 +36,10 @@ for(var/datum/ordeal/O in SSlobotomy_corp.current_ordeals) ordeal_names += O.name check += "[english_list(ordeal_names)] [length(ordeal_names) > 1 ? "are" : "is"] currently in the process.\n" - if(istype(SSlobotomy_corp.next_ordeal)) // Let's tell people what ordeal type is next - check += "Next ordeal type will be __[SSlobotomy_corp.next_ordeal.ReturnSecretName()]__.\n" - if(istype(SSlobotomy_corp.core_suppression)) // Currently active core suppression - check += "**[SSlobotomy_corp.core_suppression.name]** is currently in the process.\n" + if(istype(SSlobotomy_corp.next_ordeal)) // Let's tell people what ordeal type is next + check += "Next ordeal type will be __[SSlobotomy_corp.next_ordeal.ReturnSecretName()]__.\n" + if(istype(SSlobotomy_corp.core_suppression)) // Currently active core suppression + check += "**[SSlobotomy_corp.core_suppression.name]** is currently in the process.\n" check += "Join the round: `byond://[server ? server : "[world.internet_address ? world.internet_address : world.address]:[world.port]"]`" return check