diff --git a/code/modules/mob/abstract/new_player/sprite_accessories.dm b/code/modules/mob/abstract/new_player/sprite_accessories.dm index d06d09460a2..939c9577d5b 100644 --- a/code/modules/mob/abstract/new_player/sprite_accessories.dm +++ b/code/modules/mob/abstract/new_player/sprite_accessories.dm @@ -4318,6 +4318,10 @@ Follow by example and make good judgement based on length which list to include name = "trinary perfection IPC screen" icon_state = "ipc_tp" +/datum/sprite_accessory/facial_hair/ipc_screen_blank/ipc_screen_gd + name = "golden deep IPC screen" + icon_state = "ipc_gd" + /datum/sprite_accessory/facial_hair/diona_eye icon = 'icons/mob/human_face/dionae_hair.dmi' name = "Mono Eye" diff --git a/code/modules/mob/living/carbon/human/species/station/ipc/ipc.dm b/code/modules/mob/living/carbon/human/species/station/ipc/ipc.dm index 73a41b12016..831ed582349 100644 --- a/code/modules/mob/living/carbon/human/species/station/ipc/ipc.dm +++ b/code/modules/mob/living/carbon/human/species/station/ipc/ipc.dm @@ -369,6 +369,9 @@ if ("trinary perfection IPC screen") return LIGHT_COLOR_RED + if ("golden deep IPC screen") + return LIGHT_COLOR_YELLOW + /datum/species/machine/before_equip(var/mob/living/carbon/human/H) . = ..() check_tag(H, H.client) diff --git a/html/changelogs/sniblet-gd-display.yml b/html/changelogs/sniblet-gd-display.yml new file mode 100644 index 00000000000..42d06ce83cc --- /dev/null +++ b/html/changelogs/sniblet-gd-display.yml @@ -0,0 +1,18 @@ +# Valid Prefixes: +# rscadd (general adding of nice things) +# imageadd +################################# + +# Your name. +author: Sniblet + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - imageadd: "Golden Deep display for baselines." diff --git a/icons/mob/human_face/ipc_screens.dmi b/icons/mob/human_face/ipc_screens.dmi index f35791a87a2..3cd1606d4ed 100644 Binary files a/icons/mob/human_face/ipc_screens.dmi and b/icons/mob/human_face/ipc_screens.dmi differ