From 82d62756fe74df18bf3438802ee4e2c70f5640cf Mon Sep 17 00:00:00 2001 From: Kyle Spier-Swenson Date: Fri, 1 Jan 2016 19:23:06 -0800 Subject: [PATCH] Adds a compile option for hub password This is mainly so i can make the server tools define this, because hub.dm is a live track file, and making it be held between rounds would be too much. --- code/hub.dm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/code/hub.dm b/code/hub.dm index 69b90bd6782..f0005818f18 100644 --- a/code/hub.dm +++ b/code/hub.dm @@ -1,7 +1,11 @@ /world hub = "Exadv1.spacestation13" +#ifdef PUTONHUB + hub_password = "kMZy3U5jJHSiBQjr" +#else hub_password = "SORRYNOPASSWORD" +#endif name = "/tg/ Station 13" /* @@ -13,4 +17,4 @@ If not, let us know on the main tgstation IRC channel of irc.rizon.net #tgstatio hub_password = "kMZy3U5jJHSiBQjr" name = "Space Station 13" -*/ \ No newline at end of file +*/