diff --git a/code/modules/clothing/glasses/hud.dm b/code/modules/clothing/glasses/hud.dm index 6f3d9a2a55ae..5210757be95a 100644 --- a/code/modules/clothing/glasses/hud.dm +++ b/code/modules/clothing/glasses/hud.dm @@ -179,6 +179,16 @@ force = 12 throwforce = 12 +/obj/item/clothing/glasses/hud/personnel + name = "personnel HUD sunglasses" + desc = "Sunglasses with a personnel HUD." + icon_state = "sunhudhop" + item_state = "glasses" + hud_type = DATA_HUD_SECURITY_BASIC // Apparently the basic sec HUD is just IDs and the basic ones we use (mindshield detection etc. are "advanced" sec HUDs. + flash_protect = 1 + tint = 1 + glass_colour_type = /datum/client_colour/glass_colour/blue + /obj/item/clothing/glasses/hud/toggle name = "Toggle HUD" desc = "A HUD with multiple functions." diff --git a/code/modules/jobs/job_types/captain.dm b/code/modules/jobs/job_types/captain.dm index 4f3f1ffe62ef..70986f7d3fb4 100644 --- a/code/modules/jobs/job_types/captain.dm +++ b/code/modules/jobs/job_types/captain.dm @@ -60,7 +60,7 @@ id_type = /obj/item/card/id/gold pda_type = /obj/item/modular_computer/tablet/phone/preset/advanced/command/cap - glasses = /obj/item/clothing/glasses/sunglasses + glasses = /obj/item/clothing/glasses/hud/personnel ears = /obj/item/radio/headset/heads/captain/alt gloves = /obj/item/clothing/gloves/color/captain uniform = /obj/item/clothing/under/rank/captain diff --git a/code/modules/jobs/job_types/head_of_personnel.dm b/code/modules/jobs/job_types/head_of_personnel.dm index c6d24c1b7672..90d923174265 100644 --- a/code/modules/jobs/job_types/head_of_personnel.dm +++ b/code/modules/jobs/job_types/head_of_personnel.dm @@ -63,6 +63,7 @@ id_type = /obj/item/card/id/silver pda_type = /obj/item/modular_computer/tablet/phone/preset/advanced/command/hop + glasses = /obj/item/clothing/glasses/hud/personnel ears = /obj/item/radio/headset/heads/hop uniform = /obj/item/clothing/under/rank/head_of_personnel uniform_skirt = /obj/item/clothing/under/rank/head_of_personnel/skirt diff --git a/icons/mob/clothing/eyes/eyes.dmi b/icons/mob/clothing/eyes/eyes.dmi index ff8e9918cf41..0e0a5e318558 100644 Binary files a/icons/mob/clothing/eyes/eyes.dmi and b/icons/mob/clothing/eyes/eyes.dmi differ diff --git a/icons/obj/clothing/glasses.dmi b/icons/obj/clothing/glasses.dmi index 37c511c30ec4..0795484f35f7 100644 Binary files a/icons/obj/clothing/glasses.dmi and b/icons/obj/clothing/glasses.dmi differ