From a0621c09dffaa9f441c8b60dc14064341ef1b903 Mon Sep 17 00:00:00 2001 From: ninjanomnom Date: Sat, 7 Oct 2017 03:07:32 -0400 Subject: [PATCH] don't change mob direction if buckled --- code/modules/shuttle/shuttle_rotate.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/shuttle/shuttle_rotate.dm b/code/modules/shuttle/shuttle_rotate.dm index 389a2406edb..1979ca1c3b4 100644 --- a/code/modules/shuttle/shuttle_rotate.dm +++ b/code/modules/shuttle/shuttle_rotate.dm @@ -32,7 +32,8 @@ All shuttleRotate procs go here //override to avoid rotating pixel_xy on mobs /mob/shuttleRotate(rotation) - setDir(angle2dir(rotation+dir2angle(dir))) + if(!buckled) + setDir(angle2dir(rotation+dir2angle(dir))) /************************************Structure rotate procs************************************/