From 288c61b1c1917ec80bc4c90b22cb1d533cca61c9 Mon Sep 17 00:00:00 2001 From: deathride58 Date: Thu, 3 May 2018 21:14:15 -0400 Subject: [PATCH] obfuscates the gamemode in topic() calls --- code/datums/world_topic.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/world_topic.dm b/code/datums/world_topic.dm index 93193f964a..9fcec7cc11 100644 --- a/code/datums/world_topic.dm +++ b/code/datums/world_topic.dm @@ -136,7 +136,7 @@ /datum/world_topic/status/Run(list/input) . = list() .["version"] = GLOB.game_version - .["mode"] = GLOB.master_mode + .["mode"] = "hidden" //CIT CHANGE - hides the gamemode in topic() calls to prevent meta'ing the gamemode .["respawn"] = config ? !CONFIG_GET(flag/norespawn) : FALSE .["enter"] = GLOB.enter_allowed .["vote"] = CONFIG_GET(flag/allow_vote_mode)