Revert prior commit re: relearn suggestion set

bad logic causes the relearnmoves to get reset when first one is
applied, just revert to the old way instead of wrapping FieldsLoading
around this (repopulating legality would have to be manually called
after)
This commit is contained in:
Kurt 2019-02-07 16:54:56 -08:00
parent 59b41937e1
commit a6659fb767

View File

@ -771,8 +771,10 @@ private bool SetSuggestedRelearnMoves(bool silent = false)
return false;
}
pkm.RelearnMoves = m;
LoadRelearnMoves(pkm);
CB_RelearnMove1.SelectedValue = m[0];
CB_RelearnMove2.SelectedValue = m[1];
CB_RelearnMove3.SelectedValue = m[2];
CB_RelearnMove4.SelectedValue = m[3];
return true;
}