mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
Ports new Bay SolGov suits as Commonwealth suits
This commit is contained in:
committed by
Darlantan
parent
000d3ad6b2
commit
3d2783aec7
@@ -213,6 +213,26 @@ GLOBAL_LIST_EMPTY(mannequins)
|
||||
if(S.spawn_flags & SPECIES_IS_WHITELISTED)
|
||||
GLOB.whitelisted_species += S.name
|
||||
|
||||
// Suit cyclers
|
||||
paths = subtypesof(/datum/suit_cycler_choice/department)
|
||||
for(var/path in paths)
|
||||
var/datum/suit_cycler_choice/SCC = path
|
||||
if(!initial(SCC.name))
|
||||
continue
|
||||
GLOB.suit_cycler_departments += new path()
|
||||
paths = subtypesof(/datum/suit_cycler_choice/species)
|
||||
for(var/path in paths)
|
||||
var/datum/suit_cycler_choice/SCC = path
|
||||
if(!initial(SCC.name))
|
||||
continue
|
||||
GLOB.suit_cycler_species += new path()
|
||||
paths = subtypesof(/datum/suit_cycler_choice/department/emag)
|
||||
for(var/path in paths)
|
||||
var/datum/suit_cycler_choice/SCC = path
|
||||
if(!initial(SCC.name))
|
||||
continue
|
||||
GLOB.suit_cycler_emagged += new path()
|
||||
|
||||
//Ores
|
||||
paths = subtypesof(/ore)
|
||||
for(var/oretype in paths)
|
||||
|
||||
Reference in New Issue
Block a user