mirror of
https://github.com/fulpstation/fulpstation.git
synced 2025-12-10 10:01:40 +00:00
Several of the greps were missing the `-P` switch which caused them to fail to match things. The EOL grep also wasn't working right so I replaced it with the one I added to TGMC.
8 lines
271 B
Plaintext
8 lines
271 B
Plaintext
/datum/unit_test/subsystem_init/Run()
|
|
for(var/i in Master.subsystems)
|
|
var/datum/controller/subsystem/ss = i
|
|
if(ss.flags & SS_NO_INIT)
|
|
continue
|
|
if(!ss.initialized)
|
|
Fail("[ss]([ss.type]) is a subsystem meant to initialize but doesn't get set as initialized.")
|