diff --git a/code/controllers/configuration_old/configuration.dm b/code/controllers/configuration_old/configuration.dm index d5f4efefc8fc..c67bb947d520 100644 --- a/code/controllers/configuration_old/configuration.dm +++ b/code/controllers/configuration_old/configuration.dm @@ -9,8 +9,6 @@ var/nudge_script_path = "nudge.py" // where the nudge.py script is located - var/hub_visibility = FALSE //CITADEL CHANGE - HUB CONFIG - var/log_ooc = 0 // log OOC channel var/log_access = 0 // log login/logout var/log_say = 0 // log client say @@ -280,9 +278,6 @@ if ("ban_legacy_system") config_legacy.ban_legacy_system = 1 - if ("hub_visibility") //CITADEL CHANGE - ADDS HUB CONFIG - config_legacy.hub_visibility = 1 - if ("jobs_have_minimal_access") config_legacy.jobs_have_minimal_access = 1 @@ -834,4 +829,3 @@ config_legacy.python_path = "/usr/bin/env python2" else //probably windows, if not this should work anyway config_legacy.python_path = "python" - world.update_hub_visibility(hub_visibility) //CITADEL CHANGE - HUB CONFIG diff --git a/code/controllers/subsystem/server_maint.dm b/code/controllers/subsystem/server_maint.dm index cb85bfb611f4..ac1f562087f3 100644 --- a/code/controllers/subsystem/server_maint.dm +++ b/code/controllers/subsystem/server_maint.dm @@ -16,7 +16,8 @@ SUBSYSTEM_DEF(server_maint) var/cleanup_ticker = 0 /datum/controller/subsystem/server_maint/PreInit() - world.hub_password = "" //quickly! before the hubbies see us. + // quickly! before the hubbies see us. + world.update_hub_visibility(FALSE) /datum/controller/subsystem/server_maint/Initialize() if (fexists("tmp/"))