From 13bffff94b148381bbfd0faf0aa7aea1ffe91bfb Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Thu, 12 Oct 2017 13:24:19 -0400 Subject: [PATCH] Add require_comms_key = TRUE to some topic that need it --- code/datums/world_topic.dm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/code/datums/world_topic.dm b/code/datums/world_topic.dm index 02cb4e0c31..4a3573e0c5 100644 --- a/code/datums/world_topic.dm +++ b/code/datums/world_topic.dm @@ -110,19 +110,26 @@ /datum/world_topic/adminmsg keyword = "adminmsg" + require_comms_key = TRUE /datum/world_topic/adminmsg/Run(list/input) return IrcPm(input[keyword], input["msg"], input["sender"]) /datum/world_topic/namecheck keyword = "namecheck" + require_comms_key = TRUE /datum/world_topic/namecheck/Run(list/input) var/datum/server_tools_command/namecheck/NC = new return NC.Run(input["sender"], input["namecheck"]) /datum/world_topic/adminwho +<<<<<<< HEAD keyword = "namecheck" +======= + keyword = "adminwho" + require_comms_key = TRUE +>>>>>>> 9a91eeb... Add require_comms_key = TRUE to some topic that need it /datum/world_topic/adminwho/Run(list/input) return ircadminwho()