mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-14 08:17:14 +00:00
bb55532c4a
Move TID/SID load to after version set (special handling for pk1/pk2 which don't store version, just call manually). Update TID/SID on every gameversion change anyway Rename LoadOTID to LoadOT since it does not deal with ID. Closes #1962
44 lines
1.1 KiB
C#
44 lines
1.1 KiB
C#
using PKHeX.Core;
|
|
|
|
namespace PKHeX.WinForms.Controls
|
|
{
|
|
public partial class PKMEditor
|
|
{
|
|
private void PopulateFieldsPK2()
|
|
{
|
|
if (!(pkm is PK2 pk2))
|
|
return;
|
|
|
|
LoadMisc1(pk2);
|
|
LoadMisc2(pk2);
|
|
|
|
TID_Trainer.LoadIDValues(pkm);
|
|
TB_MetLevel.Text = pk2.Met_Level.ToString();
|
|
CB_MetLocation.SelectedValue = pk2.Met_Location;
|
|
CB_MetTimeOfDay.SelectedIndex = pk2.Met_TimeOfDay;
|
|
|
|
// Attempt to detect language
|
|
CB_Language.SelectedValue = PKX.GetVCLanguage(pk2);
|
|
|
|
LoadPartyStats(pk2);
|
|
UpdateStats();
|
|
}
|
|
|
|
private PKM PreparePK2()
|
|
{
|
|
if (!(pkm is PK2 pk2))
|
|
return null;
|
|
|
|
SaveMisc1(pk2);
|
|
SaveMisc2(pk2);
|
|
|
|
pk2.Met_Level = Util.ToInt32(TB_MetLevel.Text);
|
|
pk2.Met_Location = WinFormsUtil.GetIndex(CB_MetLocation);
|
|
pk2.Met_TimeOfDay = CB_MetTimeOfDay.SelectedIndex;
|
|
|
|
SavePartyStats(pk2);
|
|
pk2.FixMoves();
|
|
return pk2;
|
|
}
|
|
}
|
|
}
|