From bd70166dbb2d98b87ce4b005a26582ea84b3e64f Mon Sep 17 00:00:00 2001 From: Maruno17 Date: Mon, 31 Jul 2023 20:58:57 +0100 Subject: [PATCH] Fixed follower teleporting behind the player when they bump into something to the side --- Data/Scripts/004_Game classes/008_Game_Player.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Data/Scripts/004_Game classes/008_Game_Player.rb b/Data/Scripts/004_Game classes/008_Game_Player.rb index db7bba9401..6c03a8b19c 100644 --- a/Data/Scripts/004_Game classes/008_Game_Player.rb +++ b/Data/Scripts/004_Game classes/008_Game_Player.rb @@ -419,7 +419,7 @@ def update update_stop if $game_temp.in_menu && @stopped_last_frame update_screen_position(last_real_x, last_real_y) # Update dependent events - if (!@moved_last_frame || @stopped_last_frame) && (moving? || jumping?) + if (!@moved_last_frame || @stopped_last_frame) && (moving? || jumping?) && !@bumping $game_temp.followers.move_followers end $game_temp.followers.update