From a51094483b988a37d8b5fd51fafd39c3e26d09ef Mon Sep 17 00:00:00 2001 From: AnturK Date: Sun, 8 Oct 2017 21:31:36 +0200 Subject: [PATCH] Stops check antags message if round has not started yet. --- code/modules/admin/admin_verbs.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index 300bb52af02..0484db2c6ab 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -391,7 +391,7 @@ GLOBAL_LIST_INIT(admin_verbs_hideable, list( if(holder) holder.check_antagonists() log_admin("[key_name(usr)] checked antagonists.") //for tsar~ - if(!isobserver(usr)) + if(!isobserver(usr) && SSticker.HasRoundStarted()) message_admins("[key_name_admin(usr)] checked antagonists.") SSblackbox.add_details("admin_verb","Check Antagonists") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!