mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-23 13:05:44 +01:00
Fixes *some* CI issues (#11461)
This commit is contained in:
@@ -9,8 +9,7 @@
|
||||
/datum/unit_test/research_design_cost/start_test()
|
||||
var/tested_count = 0
|
||||
var/error_count = 0
|
||||
for(var/T in subtypesof(/datum/design))
|
||||
var/datum/design/D = new T
|
||||
for(var/datum/design/D in designs)
|
||||
if(ispath(D.build_path, /obj/item))
|
||||
var/obj/item/I = D.Fabricate()
|
||||
if(I.matter && D.materials && I.recyclable) // non-recyclable items can't be exploited
|
||||
@@ -40,8 +39,8 @@
|
||||
/datum/unit_test/stack_recipe_cost/start_test()
|
||||
var/tested_count = 0
|
||||
var/error_count = 0
|
||||
for(var/T in subtypesof(/material))
|
||||
var/material/D = new T
|
||||
SSmaterials.create_material_lists() // just in case
|
||||
for(var/material/D in SSmaterials.materials)
|
||||
var/list/datum/stack_recipe_list/recipe_lists = D.get_recipes()
|
||||
var/list/temp_matter = D.get_matter()
|
||||
for(var/datum/stack_recipe_list/L in recipe_lists)
|
||||
|
||||
Reference in New Issue
Block a user