Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit 1ef3aa9

Browse files
eh
1 parent f4eea0e commit 1ef3aa9

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

code/game/machinery/_machinery.dm

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -299,10 +299,6 @@ Class Procs:
299299

300300
return user.can_interact_with(src) //AIs don't care about petty mortal concerns like needing to be next to a machine to use it, but borgs do care somewhat
301301

302-
. = ..()
303-
if(!.)
304-
return FALSE
305-
306302
if(panel_open && !(interaction_flags_machine & INTERACT_MACHINE_OPEN))
307303
return FALSE
308304

@@ -395,6 +391,9 @@ Class Procs:
395391
return FALSE
396392
return _try_interact(user, modifiers)
397393

394+
/obj/machinery/attack_tk(mob/user, modifiers)
395+
return attack_hand(user, modifiers)
396+
398397
/obj/machinery/attack_ai(mob/user, modifiers)
399398
if(!(interaction_flags_machine & INTERACT_MACHINE_ALLOW_SILICON) && !IsAdminGhost(user))
400399
return FALSE

0 commit comments

Comments
 (0)