From 2ead16b5fbd10aafe92eb849edb69a38d5db2dd5 Mon Sep 17 00:00:00 2001 From: Schnayy Date: Mon, 8 Feb 2021 03:09:25 -0600 Subject: [PATCH] fix'd --- code/datums/datacore.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/datums/datacore.dm b/code/datums/datacore.dm index bdf79f1c30..661256e321 100644 --- a/code/datums/datacore.dm +++ b/code/datums/datacore.dm @@ -275,6 +275,7 @@ var/global/list/PDA_Manifest = list() list("cat" = "Medical", "elems" = med), list("cat" = "Science", "elems" = sci), list("cat" = "Cargo", "elems" = car), + list("cat" = "Planetside", "elems" = pla), list("cat" = "Civilian", "elems" = civ), list("cat" = "Silicon", "elems" = bot), list("cat" = "Miscellaneous", "elems" = misc) @@ -318,7 +319,7 @@ var/global/list/PDA_Manifest = list() var/datum/job/J = SSjob.get_job(assignment) hidden = J?.offmap_spawn - /* Note: Due to cached_character_icon, a number of emergent properties occur due to the initialization + /* Note: Due to cached_character_icon, a number of emergent properties occur due to the initialization * order of readied-up vs latejoiners. Namely, latejoiners will get a uniform in their datacore picture, but readied-up will * not. This is due to the fact that SSticker calls data_core.manifest_inject() inside of ticker/proc/create_characters(), * but does not equip them until ticker/proc/equip_characters(), which is called later. So, this proc is literally called before