From 06377300dfe47e5d09fc1930da8da22fffa97ecb Mon Sep 17 00:00:00 2001 From: Casper3667 <8396443+Casper3667@users.noreply.github.com> Date: Sun, 16 Aug 2026 16:12:26 +0000 Subject: [PATCH] Fixes that the EMP implant is visible in the bodyscanner (#23067) Because if it is visible, the surgeons will remove it. Lets give the antags some leniency. --- code/game/objects/items/weapons/implants/implants/emp.dm | 1 + html/changelogs/EmpImplantfix.yml | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 html/changelogs/EmpImplantfix.yml diff --git a/code/game/objects/items/weapons/implants/implants/emp.dm b/code/game/objects/items/weapons/implants/implants/emp.dm index 9d34bf79c79..a4c38b67541 100644 --- a/code/game/objects/items/weapons/implants/implants/emp.dm +++ b/code/game/objects/items/weapons/implants/implants/emp.dm @@ -7,6 +7,7 @@ origin_tech = list(TECH_MATERIAL = 1, TECH_BIO = 2, TECH_ILLEGAL = 2) default_action_type = /datum/action/item_action/hands_free/activate/implant/emp action_button_name = "Activate EMP Implant" + hidden = TRUE var/uses = 3 /obj/item/implant/emp/activate() diff --git a/html/changelogs/EmpImplantfix.yml b/html/changelogs/EmpImplantfix.yml new file mode 100644 index 00000000000..009937f4de9 --- /dev/null +++ b/html/changelogs/EmpImplantfix.yml @@ -0,0 +1,6 @@ +author: TheGreyWolf + +delete-after: True + +changes: + - bugfix: "Fixed that the EMP implant was visible in the bodyscanner."