Skip to content

Commit

Permalink
Fixes HR only telling people the current core suppression and next or…
Browse files Browse the repository at this point in the history
…deal if an ordeal is currently in progress (#2525)

fix
  • Loading branch information
Gboster-0 authored Oct 31, 2024
1 parent 13c70a9 commit a7a6045
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions code/modules/admin/chat_commands.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit a7a6045

Please sign in to comment.