mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-23 21:18:37 +01:00
Fixes to_chat never actually queuing (#90461)
This commit is contained in:
@@ -490,7 +490,8 @@ ADMIN_VERB(cmd_controller_view_ui, R_SERVER|R_DEBUG, "Controller Overview", "Vie
|
||||
SS_INIT_NO_MESSAGE,
|
||||
)
|
||||
|
||||
if (subsystem.flags & SS_NO_INIT || subsystem.initialized) //Don't init SSs with the corresponding flag or if they already are initialized
|
||||
if ((subsystem.flags & SS_NO_INIT) || subsystem.initialized) //Don't init SSs with the corresponding flag or if they already are initialized
|
||||
subsystem.initialized = TRUE // set initialized to TRUE, because the value of initialized may still be checked on SS_NO_INIT subsystems as an "is this ready" check
|
||||
return
|
||||
|
||||
current_initializing_subsystem = subsystem
|
||||
|
||||
Reference in New Issue
Block a user