From 3ff6a92476462df376cd891384a9434e609f50d7 Mon Sep 17 00:00:00 2001 From: Contrabang <91113370+Contrabang@users.noreply.github.com> Date: Sun, 9 Feb 2025 22:00:22 -0500 Subject: [PATCH] Headrev sechud is now an implant (#28230) --- code/modules/antagonists/revolutionary/datum_headrev.dm | 6 +++--- code/modules/surgery/organs/augments_eyes.dm | 3 +++ 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/code/modules/antagonists/revolutionary/datum_headrev.dm b/code/modules/antagonists/revolutionary/datum_headrev.dm index 3097fbc0229..64e9311226e 100644 --- a/code/modules/antagonists/revolutionary/datum_headrev.dm +++ b/code/modules/antagonists/revolutionary/datum_headrev.dm @@ -46,9 +46,9 @@ RESTRICT_TYPE(/datum/antagonist/rev/head) to_chat(revolutionary, "The flash in your [flashloc_name] will help you to persuade the crew to join your cause.") if(give_hud) - var/obj/item/clothing/glasses/hud/security/chameleon/C = new(get_turf(revolutionary)) - var/hudloc_name = revolutionary.equip_in_one_of_slots(C, slots) - to_chat(revolutionary, "The chameleon security HUD in your [hudloc_name] will help you keep track of who is mindshield-implanted, and unable to be recruited.") + var/obj/item/organ/internal/cyberimp/eyes/hud/security/hidden/O = new /obj/item/organ/internal/cyberimp/eyes/hud/security/hidden + O.insert(revolutionary) + to_chat(revolutionary, "The security HUD implant in your head will help you keep track of who is mindshield-implanted, and unable to be recruited.") revolutionary.update_icons() return flashloc_name diff --git a/code/modules/surgery/organs/augments_eyes.dm b/code/modules/surgery/organs/augments_eyes.dm index a2630126054..5ff41d62e2b 100644 --- a/code/modules/surgery/organs/augments_eyes.dm +++ b/code/modules/surgery/organs/augments_eyes.dm @@ -61,6 +61,9 @@ HUD_type = DATA_HUD_SECURITY_ADVANCED examine_extensions = list(EXAMINE_HUD_SECURITY_READ) +/obj/item/organ/internal/cyberimp/eyes/hud/security/hidden + stealth_level = 4 // Only surgery or a body scanner with the highest tier of stock parts can detect this. + /obj/item/organ/internal/cyberimp/eyes/hud/jani name = "Janitor HUD implant" desc = "These cybernetic eye implants will display a filth HUD over everything you see."