From 9a91eeb489c909ad45b1529eebb765ab71ecf0bd 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 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/datums/world_topic.dm b/code/datums/world_topic.dm index 9754f65c180..864f531715c 100644 --- a/code/datums/world_topic.dm +++ b/code/datums/world_topic.dm @@ -110,12 +110,14 @@ /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 @@ -123,6 +125,7 @@ /datum/world_topic/adminwho keyword = "adminwho" + require_comms_key = TRUE /datum/world_topic/adminwho/Run(list/input) return ircadminwho()