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

Commit 9ab242a

Browse files
authored
Fix TK machines (#17396)
1 parent 688be42 commit 9ab242a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

code/game/machinery/_machinery.dm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ Class Procs:
294294
to_chat(H, span_warning("HULK NOT NERD. HULK SMASH!!!"))
295295
return FALSE // hulks cant use machines
296296

297-
else if(!(Adjacent(user) || H.dna.check_mutation(TK)))
297+
else if(!Adjacent(user) || !H.dna.check_mutation(TK))
298298
return FALSE // need to be close or have telekinesis
299299

300300
return TRUE
@@ -684,4 +684,4 @@ Class Procs:
684684
if(can_be_occupant(caller))
685685
return TRUE
686686

687-
687+

0 commit comments

Comments
 (0)