From 2486fa9fe2fc10eb90beba39ba68955da8ed3694 Mon Sep 17 00:00:00 2001 From: Maruno17 Date: Sun, 19 Jun 2022 22:44:29 +0100 Subject: [PATCH] Fixed player being able to be stuck in running position when opening the pause/ready menu --- Data/Scripts/004_Game classes/009_Game_Player.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Data/Scripts/004_Game classes/009_Game_Player.rb b/Data/Scripts/004_Game classes/009_Game_Player.rb index 227cdc528..2650011c0 100644 --- a/Data/Scripts/004_Game classes/009_Game_Player.rb +++ b/Data/Scripts/004_Game classes/009_Game_Player.rb @@ -420,6 +420,7 @@ class Game_Player < Game_Character last_real_x = @real_x last_real_y = @real_y super + 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 ||