From 7d3707bf19cc800704c5de4e2bb6053866f11e80 Mon Sep 17 00:00:00 2001 From: SapphicOverload Date: Thu, 3 Oct 2024 20:29:42 -0400 Subject: [PATCH] Update computer.dm --- code/modules/modular_computers/computers/item/computer.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/modular_computers/computers/item/computer.dm b/code/modules/modular_computers/computers/item/computer.dm index e8ae20e558f7..036683d29cb5 100644 --- a/code/modules/modular_computers/computers/item/computer.dm +++ b/code/modules/modular_computers/computers/item/computer.dm @@ -230,7 +230,8 @@ /obj/item/modular_computer/CtrlClick() var/mob/M = usr if(ishuman(usr) && usr.CanReach(src) && usr.canUseTopic(src)) - return attack_self(M) + attack_self(M) + return TRUE else return ..()