From c3568f9ea06a970addf098b01167c3965b2a7c7f Mon Sep 17 00:00:00 2001 From: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> Date: Sat, 7 Oct 2023 22:29:16 -0400 Subject: [PATCH] you can no longer kidnap people with the syndicate teleporter (#22723) --- code/game/objects/items/devices/traitordevices.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/game/objects/items/devices/traitordevices.dm b/code/game/objects/items/devices/traitordevices.dm index 7e057c97549..3fa7175a05a 100644 --- a/code/game/objects/items/devices/traitordevices.dm +++ b/code/game/objects/items/devices/traitordevices.dm @@ -102,6 +102,8 @@ icon_state = icons_charges[charges + 1] /obj/item/teleporter/proc/attempt_teleport(mob/user, EMP_D = FALSE) + for(var/obj/item/grab/G in user) + qdel(G) dir_correction(user) if(!charges && !EMP_D) //If it's empd, you are moving no matter what. to_chat(user, "[src] is still recharging.")