diff options
author | Ajarmar <axel.jarmar@gmail.com> | 2020-09-30 20:28:27 +0200 |
---|---|---|
committer | Ajarmar <axel.jarmar@gmail.com> | 2020-09-30 20:28:27 +0200 |
commit | 99ce74f2b6b01b2dc1925fc55319b1fd3d7f58d1 (patch) | |
tree | c68d55b63df7b6620c1738afc411e6eb7b7c467e /src | |
parent | 164fb2ea83b2aae85baceb84fcf1ba57b12f85e1 (diff) |
fix "update moves" setting to not get its state from "update base stats" when loading settings
Diffstat (limited to 'src')
-rw-r--r-- | src/com/dabomstew/pkrandom/newgui/NewRandomizerGUI.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/dabomstew/pkrandom/newgui/NewRandomizerGUI.java b/src/com/dabomstew/pkrandom/newgui/NewRandomizerGUI.java index 750b0f7..1bb2fee 100644 --- a/src/com/dabomstew/pkrandom/newgui/NewRandomizerGUI.java +++ b/src/com/dabomstew/pkrandom/newgui/NewRandomizerGUI.java @@ -1200,7 +1200,7 @@ public class NewRandomizerGUI { peChangeImpossibleEvosCheckBox.setSelected(settings.isChangeImpossibleEvolutions()); mdUpdateMovesCheckBox.setSelected(settings.isUpdateMoves()); - mdUpdateComboBox.setSelectedIndex(Math.max(0,settings.getUpdateBaseStatsToGeneration() - (romHandler.generationOfPokemon()+1))); + mdUpdateComboBox.setSelectedIndex(Math.max(0,settings.getUpdateMovesToGeneration() - (romHandler.generationOfPokemon()+1))); tpRandomizeTrainerNamesCheckBox.setSelected(settings.isRandomizeTrainerNames()); tpRandomizeTrainerClassNamesCheckBox.setSelected(settings.isRandomizeTrainerClassNames()); |