Skip to content

Commit

Permalink
you can no longer kinesis the chair you are buckled to (ParadiseSS13#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Qwertytoforty authored May 21, 2024
1 parent e7ecbda commit 956bf6c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions code/modules/mod/modules/module_kinesis.dm
Original file line number Diff line number Diff line change
Expand Up @@ -161,13 +161,17 @@
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
if(movable_target.throwing)
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
Expand Down

0 comments on commit 956bf6c

Please sign in to comment.