This commit is contained in:
ItsSelis
2023-12-08 17:26:04 +01:00
committed by Selis
parent 166377f6de
commit 4b7e5dca65
3 changed files with 4 additions and 2 deletions
+2 -1
View File
@@ -15,7 +15,8 @@ SUBSYSTEM_DEF(chat)
/datum/controller/subsystem/chat/Initialize()
// Just used by chat system to know that initialization is nearly finished.
// The to_chat checks could probably check the runlevel instead, but would require testing.
return SS_INIT_SUCCESS
// return SS_INIT_SUCCESS
return ..()
/datum/controller/subsystem/chat/fire()
for(var/key in payload_by_client)
+1 -1
View File
@@ -6,7 +6,7 @@
SUBSYSTEM_DEF(ping)
name = "Ping"
priority = FIRE_PRIORITY_PING
init_stage = INITSTAGE_EARLY
// init_stage = INITSTAGE_EARLY
wait = 4 SECONDS
flags = SS_NO_INIT
runlevels = RUNLEVEL_LOBBY | RUNLEVEL_SETUP | RUNLEVEL_GAME | RUNLEVEL_POSTGAME