mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
Fix ability population, dragout image not updating bugs
This commit is contained in:
parent
3289ec640b
commit
e3f607f686
1 changed files with 3 additions and 2 deletions
|
@ -1059,6 +1059,7 @@ namespace PKHeX
|
||||||
MT_Level.Text = level.ToString();
|
MT_Level.Text = level.ToString();
|
||||||
MT_Form.Text = altforms.ToString();
|
MT_Form.Text = altforms.ToString();
|
||||||
}
|
}
|
||||||
|
getQuickFiller(dragout);
|
||||||
}
|
}
|
||||||
private void populateMarkings(int markings)
|
private void populateMarkings(int markings)
|
||||||
{
|
{
|
||||||
|
@ -2171,7 +2172,7 @@ namespace PKHeX
|
||||||
}
|
}
|
||||||
public void updateAbilityList(MaskedTextBox tb_abil, int species, ComboBox cb_abil, ComboBox cb_forme)
|
public void updateAbilityList(MaskedTextBox tb_abil, int species, ComboBox cb_abil, ComboBox cb_forme)
|
||||||
{
|
{
|
||||||
if (!init)
|
if (!init && tb_abil.Text == "")
|
||||||
return;
|
return;
|
||||||
int newabil = Convert.ToInt16(tb_abil.Text) >> 1;
|
int newabil = Convert.ToInt16(tb_abil.Text) >> 1;
|
||||||
|
|
||||||
|
@ -4357,4 +4358,4 @@ namespace PKHeX
|
||||||
private int pkm_from_offset = 0;
|
private int pkm_from_offset = 0;
|
||||||
#endregion
|
#endregion
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue