From b4d1f582fa76ae30a19a2064543d84b52c854fa1 Mon Sep 17 00:00:00 2001 From: Tom <8881105+tf-4@users.noreply.github.com> Date: Wed, 1 Dec 2021 13:19:20 +0000 Subject: [PATCH] Fixes another TK teleportation trick, but more literally (#63125) Stop people with TK being able to instantly teleport onto weight machines --- code/game/objects/structures/gym.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/game/objects/structures/gym.dm b/code/game/objects/structures/gym.dm index 63e113a6a93..67cc6853327 100644 --- a/code/game/objects/structures/gym.dm +++ b/code/game/objects/structures/gym.dm @@ -34,6 +34,8 @@ . = ..() if(.) return + if(!user.canUseTopic(src, BE_CLOSE, FALSE, NO_TK)) + return if(obj_flags & IN_USE) to_chat(user, span_warning("It's already in use - wait a bit!")) return