mirror of
https://github.com/suloku/BW_tool.git
synced 2026-04-18 14:47:18 -05:00
Update Entralink_DreamWorld.cs
Banette fix for PGL distribution (already located months ago, but didn't commit)
This commit is contained in:
parent
f7db2f8dd5
commit
b4a7dade64
|
|
@ -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{
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user