Make the global announcer really global

This commit is contained in:
Aronai Sieyes
2020-05-17 09:44:07 -04:00
parent ebc0bf425b
commit 0f1d00d13b
2 changed files with 9 additions and 3 deletions

View File

@@ -55,6 +55,10 @@ var/global/datum/controller/subsystem/ticker/ticker
/datum/controller/subsystem/ticker/Initialize()
pregame_timeleft = config.pregame_time
send2mainirc("Server lobby is loaded and open at byond://[config.serverurl ? config.serverurl : (config.server ? config.server : "[world.address]:[world.port]")]")
// Set up the global announcer
GLOB.autospeaker = new (null, null, null, 1)
return ..()
/datum/controller/subsystem/ticker/fire(resumed = FALSE)