Skip to content

Commit

Permalink
Fixed follower teleporting behind the player when they bump into some…
Browse files Browse the repository at this point in the history
…thing to the side
  • Loading branch information
Maruno17 committed Jul 31, 2023
1 parent 3d4a495 commit bd70166
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Data/Scripts/004_Game classes/008_Game_Player.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit bd70166

Please sign in to comment.