From 7ef36802ff6050b272a5c8081bb215d88a744606 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Thu, 12 Oct 2017 17:06:05 -0400 Subject: [PATCH] Merge pull request #31588 from ninjanomnom/shuttle-parallax Fixes stationary mob parallax --- code/modules/shuttle/on_move.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/modules/shuttle/on_move.dm b/code/modules/shuttle/on_move.dm index ad21c9e6ba..ad2f44f534 100644 --- a/code/modules/shuttle/on_move.dm +++ b/code/modules/shuttle/on_move.dm @@ -85,14 +85,15 @@ All ShuttleMove procs go here if(rotation) shuttleRotate(rotation) //see shuttle_rotate.dm loc = newT - if(length(client_mobs_in_contents)) - update_parallax_contents() return TRUE // Called on atoms after everything has been moved /atom/movable/proc/afterShuttleMove(list/movement_force, shuttle_dir, shuttle_preferred_direction, move_dir) if(light) update_light() + + update_parallax_contents() + return TRUE /////////////////////////////////////////////////////////////////////////////////////