mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-03-21 17:48:28 -05:00
Tweak gen3 sav load to force version prompt
Hold Control when opening the save file Closes #887
This commit is contained in:
parent
58bd3640b4
commit
9df18d2bd1
|
|
@ -877,11 +877,11 @@ private void openSAV(SaveFile sav, string path)
|
|||
}
|
||||
}
|
||||
// Finish setting up the save file.
|
||||
if (sav.IndeterminateGame && sav.Generation == 3)
|
||||
if (sav.Generation == 3 && (sav.IndeterminateGame || ModifierKeys == Keys.Control))
|
||||
{
|
||||
// Hacky cheats invalidated the Game Code value.
|
||||
var drGame = WinFormsUtil.Prompt(MessageBoxButtons.YesNoCancel,
|
||||
"Unknown Gen3 Game Detected. Select Origins:",
|
||||
"Gen3 Game Detected. Select Origins:",
|
||||
"Yes: Ruby / Sapphire" + Environment.NewLine +
|
||||
"No: Emerald" + Environment.NewLine +
|
||||
"Cancel: FireRed / LeafGreen");
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user