From 24b77a7ff11d6825b3c332ba761b39a9b6edeb63 Mon Sep 17 00:00:00 2001 From: GDN <96800819+GDNgit@users.noreply.github.com> Date: Sat, 14 Jan 2023 19:45:11 -0600 Subject: [PATCH] Removes a defunct thunderdome warning (#20180) --- code/modules/admin/topic.dm | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/code/modules/admin/topic.dm b/code/modules/admin/topic.dm index 352f24886e1..69a6cce793b 100644 --- a/code/modules/admin/topic.dm +++ b/code/modules/admin/topic.dm @@ -3093,12 +3093,7 @@ var/confirmation = alert("Start a Thunderdome match?","Confirm","Yes","No") if(confirmation == "No") return - if(makeThunderdomeTeams()) - log_admin("[key_name(usr)] started a Thunderdome match!", 1) - message_admins("[key_name_admin(usr)] has started a Thunderdome match!") - else - log_admin("[key_name(usr)] attempted to start a Thunderdome match, but no ghosts signed up.", 1) - message_admins("[key_name_admin(usr)] tried starting a Thunderdome match, but no ghosts signed up.") + makeThunderdomeTeams() if("securitylevel0") set_security_level(0) message_admins("[key_name_admin(usr)] change security level to Green.", 1)