Update Entralink_DreamWorld.cs

Banette fix for PGL distribution (already located months ago, but didn't commit)
This commit is contained in:
suloku 2016-12-07 00:30:19 +01:00 committed by GitHub
parent f7db2f8dd5
commit b4a7dade64

View File

@ -664,7 +664,7 @@ namespace BW_tool
//Male/female
if (gender == 2 || (world == 8) )
{
if (world == 8 && speciesbox.SelectedIndex == 20) //Banette is the only female pokemon distributed via PGL
if (world == 8 && speciesbox.SelectedIndex == 22) //Banette is the only female pokemon distributed via PGL
{
gnd_female.Checked = true;
gnd_male.Enabled = false;
@ -678,8 +678,9 @@ namespace BW_tool
}
if (gnd_male.Checked == false && gnd_female.Checked == false && gnd_none.Checked == false)
{
if (world == 8 && speciesbox.SelectedIndex == 20) //Banette is the only female pokemon distributed via PGL
if (world == 8 && speciesbox.SelectedIndex == 22) //Banette is the only female pokemon distributed via PGL
{
gnd_female.Enabled = true;
gnd_female.Checked = true;
gnd_male.Enabled = false;
}else{