Description:
When manually selecting a game executable via "Select Game Executable" button, the application incorrectly rejects valid RPG Maker games that use the www folder structure.
Current Behavior:
The code only checks for core files in the root js/ folder:
js/rpg_core.js (MV)
js/rmmz_core.js (MZ)
Expected Behavior:
Many RPG Maker games (especially MZ) store core files inside a www folder. The detection should check both locations:
js/rpg_core.js OR www/js/rpg_core.js (MV)
js/rmmz_core.js OR www/js/rmmz_core.js (MZ)
Affected Code:
RPGModder.UI/MainWindow.axaml.cs - BtnSelect_Click() method (lines ~448-451)
Description:
When manually selecting a game executable via "Select Game Executable" button, the application incorrectly rejects valid RPG Maker games that use the
wwwfolder structure.Current Behavior:
The code only checks for core files in the root
js/folder:js/rpg_core.js(MV)js/rmmz_core.js(MZ)Expected Behavior:
Many RPG Maker games (especially MZ) store core files inside a
wwwfolder. The detection should check both locations:js/rpg_core.jsORwww/js/rpg_core.js(MV)js/rmmz_core.jsORwww/js/rmmz_core.js(MZ)Affected Code:
RPGModder.UI/MainWindow.axaml.cs-BtnSelect_Click()method (lines ~448-451)