mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-19 14:51:27 +00:00
6 lines
209 B
Plaintext
6 lines
209 B
Plaintext
/datum/unit_test/crafting_lists/Run()
|
|
for(var/I in subtypesof(/datum/crafting_recipe))
|
|
var/datum/crafting_recipe/C = new I()
|
|
if(!islist(C.result))
|
|
Fail("Expected a list for the 'result' of [C.type].")
|