Maruno17 / pokemon-essentials

A heavily modified RPG Maker XP game project that makes the game play like a Pokémon game. Not a full project in itself; this repo is to be added into an existing RMXP game project.
Other
208 stars 398 forks source link

pbShowCommandsWithHelp softlock #189

Closed Vendily closed 2 years ago

Vendily commented 2 years ago

https://github.com/Maruno17/pokemon-essentials/blob/d890cd8a2478f2466da22645156d5b1f46432b72/Data/Scripts/007_Objects%20and%20windows/011_Messages.rb#L822

pbShowCommandsWithHelp does not dispose its temp msgwin with pbDisposeMessageWindow. This means if no regular message is shown after it, which would also call pbDisposeMessageWindow, $game_temp.message_window_showing remains true from the last pbCreateMessageWindow call, blocking all user input.

Maruno17 commented 2 years ago

Fixed in commit 88dc215.