mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-05-15 03:12:25 +01:00
4bfd268737
* slime test * missed slime
13 lines
454 B
Plaintext
13 lines
454 B
Plaintext
/datum/unit_test/all_slimes_must_have_research_values
|
|
|
|
/datum/unit_test/all_slimes_must_have_research_values/Run()
|
|
var/failed = FALSE
|
|
|
|
for(var/slime in subtypesof(/obj/item/slime_extract))
|
|
if(!(slime in SSresearch.techweb_point_items))
|
|
TEST_NOTICE(src, "Slimes - [slime] type did not have a SSresearch.techweb_point_items value associated with it.")
|
|
failed = TRUE
|
|
|
|
if(failed)
|
|
TEST_FAIL("All xenobio slimes must have a research point value")
|