From 8b0030f6decbd24ac6e06c5bc9af1efa134b24d7 Mon Sep 17 00:00:00 2001 From: ccomp5950 Date: Mon, 25 Jan 2016 21:10:44 -0500 Subject: [PATCH] Makes Hub Password / Login depend on a DEFINE --- code/hub.dm | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/code/hub.dm b/code/hub.dm index 6c38b00143f..176e3cc5cb4 100644 --- a/code/hub.dm +++ b/code/hub.dm @@ -1,13 +1,14 @@ /world - hub = "Exadv1.spacestation13" - hub_password = "SORRYNOPASSWORD" name = "Space Station 13" -/* This is for any host that would like their server to appear on the main SS13 hub. -To use it, simply replace the password above, with the password found below, and it should work. -If not, let us know on the main tgstation IRC channel of irc.rizon.net #tgstation13 we can help you there. - - hub = "Exadv1.spacestation13" +#ifdef HUB_ENABLED hub_password = "kMZy3U5jJHSiBQjr" - name = "Space Station 13" -*/ \ No newline at end of file +#else + hub_password = "SORRYNOPASSWORD" +#endif + + +/* This is for any host that would like their server to appear on the main SS13 hub. + * To use it, simply replace the password above, with the password found below, and it should work. + * If not, let us know on the main tgstation IRC channel of irc.rizon.net #tgstation13 we can help you there. + */