mirror of
https://github.com/quotefox/Hyper-Station-13.git
synced 2026-07-16 18:22:22 +01:00
b8533d6884
Gets the safety tether to generally work, minus some bugs and flaws.
13 lines
487 B
Plaintext
13 lines
487 B
Plaintext
GLOBAL_LIST_EMPTY(cosmetic_heads)
|
|
GLOBAL_LIST_EMPTY(cosmetic_chests)
|
|
GLOBAL_LIST_EMPTY(cosmetic_arms)
|
|
GLOBAL_LIST_EMPTY(cosmetic_legs)
|
|
|
|
//A list of safety tether machines for cloud chasms to refer to for emergency teleportation of fallen mobs
|
|
GLOBAL_LIST_EMPTY(safety_tethers_list)
|
|
|
|
/proc/init_cosmetic_parts(datum/cosmetic_part/type, list/global_list)
|
|
for(var/subtype in subtypesof(type))
|
|
var/datum/cosmetic_part/part = new subtype()
|
|
global_list[part.id] = part
|
|
return global_list |