From c5ecafeeaa6299f084fe796c8d4344f852dee8dd Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Thu, 6 Apr 2023 17:16:50 -0700 Subject: [PATCH] adds a delay to translocators (#5299) telescience update will deal with the rest unfortunately people won't stop gaming with this so :cl: balance: translocators now have a 5 second activation delay when teleporting others /:cl: --- code/modules/vore/fluffstuff/custom_items.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/vore/fluffstuff/custom_items.dm b/code/modules/vore/fluffstuff/custom_items.dm index e42d45158db..757b2675699 100644 --- a/code/modules/vore/fluffstuff/custom_items.dm +++ b/code/modules/vore/fluffstuff/custom_items.dm @@ -985,6 +985,9 @@ if(!teleport_checks(target,user)) return //The checks proc can send them a message if it wants. + + if(user != target && !do_after(user, 5 SECONDS, target)) + return ready = FALSE update_icon()