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]")
|