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