From 97ead4b39e0b02a27c4b75b898acd83554db5c79 Mon Sep 17 00:00:00 2001 From: Geeves Date: Mon, 15 Feb 2021 21:12:49 +0200 Subject: [PATCH] Wristbound Fix (#11191) --- .../modular_computers/computers/subtypes/dev_wristbound.dm | 2 +- html/changelogs/geeves-wristbound_fix.yml | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 html/changelogs/geeves-wristbound_fix.yml diff --git a/code/modules/modular_computers/computers/subtypes/dev_wristbound.dm b/code/modules/modular_computers/computers/subtypes/dev_wristbound.dm index 43ef8faa10a..275d12bbfec 100644 --- a/code/modules/modular_computers/computers/subtypes/dev_wristbound.dm +++ b/code/modules/modular_computers/computers/subtypes/dev_wristbound.dm @@ -21,7 +21,7 @@ /obj/item/modular_computer/handheld/wristbound/attack_hand(mob/user) if(ishuman(user)) var/mob/living/carbon/human/H = user - if(H.gloves == src || H.wear_id == src) + if(H.wrists == src || H.wear_id == src) return attack_self(user) ..() diff --git a/html/changelogs/geeves-wristbound_fix.yml b/html/changelogs/geeves-wristbound_fix.yml new file mode 100644 index 00000000000..f3bdc2387ba --- /dev/null +++ b/html/changelogs/geeves-wristbound_fix.yml @@ -0,0 +1,6 @@ +author: Geeves + +delete-after: True + +changes: + - bugfix: "Fixed clicking the wristbound on the wrist slot not interacting with it." \ No newline at end of file