Skip to content

Commit

Permalink
Fixed a mistake in the breeding bot
Browse files Browse the repository at this point in the history
  • Loading branch information
drgoku282 committed Nov 4, 2016
1 parent f11ee58 commit 7a6ec48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PKMN-NTR/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4658,7 +4658,7 @@ private async void runBreedingBot_Click(object sender, EventArgs e)
{
botState = (int)breedbotstates.facedaycareman;
}
else if (modeBreed.SelectedIndex > 0)
else if (modeBreed.SelectedIndex >= 0)
{
botState = (int)breedbotstates.walk1;
}
Expand Down

0 comments on commit 7a6ec48

Please sign in to comment.