mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-13 19:52:40 +00:00
These might be bad
This commit is contained in:
@@ -6,11 +6,23 @@ SUBSYSTEM_DEF(assets)
|
|||||||
var/list/preload = list()
|
var/list/preload = list()
|
||||||
|
|
||||||
/datum/controller/subsystem/assets/Initialize(timeofday)
|
/datum/controller/subsystem/assets/Initialize(timeofday)
|
||||||
|
<<<<<<< HEAD
|
||||||
for(var/type in typesof(/datum/asset))
|
for(var/type in typesof(/datum/asset))
|
||||||
var/datum/asset/A = type
|
var/datum/asset/A = type
|
||||||
if (type != initial(A._abstract))
|
if (type != initial(A._abstract))
|
||||||
get_asset_datum(type)
|
get_asset_datum(type)
|
||||||
|
|
||||||
|
||||||| parent of 70cccc775a... Merge pull request #11192 from VOREStation/Arokha/hmm
|
||||||
|
for(var/datum/asset/A as anything in typesof(/datum/asset))
|
||||||
|
if (type != initial(A._abstract))
|
||||||
|
get_asset_datum(type)
|
||||||
|
|
||||||
|
=======
|
||||||
|
for(var/typepath in typesof(/datum/asset))
|
||||||
|
var/datum/asset/A = typepath
|
||||||
|
if (typepath != initial(A._abstract))
|
||||||
|
get_asset_datum(typepath)
|
||||||
|
>>>>>>> 70cccc775a... Merge pull request #11192 from VOREStation/Arokha/hmm
|
||||||
|
|
||||||
preload = cache.Copy() //don't preload assets generated during the round
|
preload = cache.Copy() //don't preload assets generated during the round
|
||||||
|
|
||||||
|
|||||||
@@ -43,10 +43,20 @@
|
|||||||
|
|
||||||
if(!available_recipes)
|
if(!available_recipes)
|
||||||
available_recipes = new
|
available_recipes = new
|
||||||
|
<<<<<<< HEAD
|
||||||
for(var/T in (typesof(/datum/recipe)-/datum/recipe))
|
for(var/T in (typesof(/datum/recipe)-/datum/recipe))
|
||||||
var/datum/recipe/type = T
|
var/datum/recipe/type = T
|
||||||
if((initial(type.appliance) & appliancetype))
|
if((initial(type.appliance) & appliancetype))
|
||||||
available_recipes += new type
|
available_recipes += new type
|
||||||
|
||||||| parent of 70cccc775a... Merge pull request #11192 from VOREStation/Arokha/hmm
|
||||||
|
for(var/datum/recipe/type as anything in subtypesof(/datum/recipe))
|
||||||
|
if((initial(type.appliance) & appliancetype))
|
||||||
|
available_recipes += new type
|
||||||
|
=======
|
||||||
|
for(var/datum/recipe/typepath as anything in subtypesof(/datum/recipe))
|
||||||
|
if((initial(typepath.appliance) & appliancetype))
|
||||||
|
available_recipes += new typepath
|
||||||
|
>>>>>>> 70cccc775a... Merge pull request #11192 from VOREStation/Arokha/hmm
|
||||||
|
|
||||||
acceptable_items = new
|
acceptable_items = new
|
||||||
acceptable_reagents = new
|
acceptable_reagents = new
|
||||||
|
|||||||
Reference in New Issue
Block a user