Skip to content

Commit

Permalink
Finishing touches
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkSuckerberg committed Dec 22, 2023
1 parent 0202333 commit b68e696
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions code/modules/admin/chat_commands.dm
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,13 @@
if(rtod - last_tgs_status < TGS_STATUS_THROTTLE)
return new /datum/tgs_message_content("Please wait a few seconds before using this command again.")
last_tgs_status = rtod
var/list/adm = get_admin_counts()

var/datum/tgs_chat_embed/structure/embed = new()
embed.title = "Server Admin Status"
embed.colour = COLOR_DARK_CYAN

embed.fields = list()
embed.fields += new /datum/tgs_chat_embed/field("Round", "[GLOB.round_id ? "Round #[GLOB.round_id]" : "Not started"]")
embed.fields += new /datum/tgs_chat_embed/field("Round", "[GLOB.round_id ? "Round #[GLOB.round_id]" : "Not started"]\n[station_name()]\n[length(SSovermap.controlled_ships)] ships")
embed.fields += new /datum/tgs_chat_embed/field("Admins", tgsadminwho())
embed.fields += new /datum/tgs_chat_embed/field("Players", "Total: [length(GLOB.clients)]\nActive: [get_active_player_count(FALSE, TRUE, FALSE)]\nAlive: [get_active_player_count(TRUE, TRUE, TRUE)]")

Expand Down

0 comments on commit b68e696

Please sign in to comment.