mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-10 01:49:19 +00:00
6 lines
244 B
Plaintext
6 lines
244 B
Plaintext
/datum/unit_test/species_whitelist_check/Run()
|
|
for(var/typepath in subtypesof(/datum/species))
|
|
var/datum/species/S = typepath
|
|
if(initial(S.changesource_flags) == NONE)
|
|
Fail("A species type was detected with no changesource flags: [S]")
|