From 956bf6cd79bdefde1bdf39f7e0073d7a93a5afdc Mon Sep 17 00:00:00 2001 From: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> Date: Tue, 21 May 2024 18:23:45 -0400 Subject: [PATCH] you can no longer kinesis the chair you are buckled to (#25561) --- code/modules/mod/modules/module_kinesis.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/mod/modules/module_kinesis.dm b/code/modules/mod/modules/module_kinesis.dm index c2c9242fb400..070c1122d83f 100644 --- a/code/modules/mod/modules/module_kinesis.dm +++ b/code/modules/mod/modules/module_kinesis.dm @@ -161,6 +161,8 @@ return FALSE if(iseffect(target)) return FALSE + if(locate(mod.wearer) in target) + return FALSE var/atom/movable/movable_target = target if(movable_target.anchored) return FALSE @@ -168,6 +170,8 @@ return FALSE if(movable_target.move_resist >= MOVE_FORCE_OVERPOWERING) return FALSE + if(locate(mod.wearer) in movable_target.buckled_mobs) + return FALSE if(ismob(movable_target)) if(!isliving(movable_target)) return FALSE