From 0ab153e59f9c4f01d95dc6b76a26d100b39b30ab Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Wed, 1 Dec 2021 16:24:23 +0100 Subject: [PATCH] [MIRROR] Fixes another TK teleportation trick, but more literally [MDB IGNORE] (#9803) * Fixes another TK teleportation trick, but more literally (#63125) Stop people with TK being able to instantly teleport onto weight machines * Fixes another TK teleportation trick, but more literally Co-authored-by: Tom <8881105+tf-4@users.noreply.github.com> --- 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