mirror of
https://github.com/fulpstation/fulpstation.git
synced 2025-12-09 16:09:15 +00:00
[MDB IGNORE] "Holy shit we need the halloween fixes" TGU (#395)
* tgu * idk this seems to work * rad collector stuff, the pubby update * pubby update * Helio and finishing Pubby * map stuff * drone dispensers * tgu
This commit is contained in:
@@ -38,12 +38,12 @@
|
||||
for(var/spath in subtypesof(/datum/species))
|
||||
var/datum/species/S = new spath()
|
||||
GLOB.species_list[S.id] = spath
|
||||
sortList(GLOB.species_list, /proc/cmp_typepaths_asc)
|
||||
sort_list(GLOB.species_list, /proc/cmp_typepaths_asc)
|
||||
|
||||
//Surgeries
|
||||
for(var/path in subtypesof(/datum/surgery))
|
||||
GLOB.surgeries_list += new path()
|
||||
sortList(GLOB.surgeries_list, /proc/cmp_typepaths_asc)
|
||||
sort_list(GLOB.surgeries_list, /proc/cmp_typepaths_asc)
|
||||
|
||||
// Hair Gradients - Initialise all /datum/sprite_accessory/hair_gradient into an list indexed by gradient-style name
|
||||
for(var/path in subtypesof(/datum/sprite_accessory/hair_gradient))
|
||||
@@ -63,7 +63,7 @@
|
||||
/proc/init_crafting_recipes(list/crafting_recipes)
|
||||
for(var/path in subtypesof(/datum/crafting_recipe))
|
||||
var/datum/crafting_recipe/recipe = new path()
|
||||
recipe.reqs = sortList(recipe.reqs, /proc/cmp_crafting_req_priority)
|
||||
recipe.reqs = sort_list(recipe.reqs, /proc/cmp_crafting_req_priority)
|
||||
crafting_recipes += recipe
|
||||
return crafting_recipes
|
||||
|
||||
|
||||
Reference in New Issue
Block a user