Skip to content

Commit

Permalink
Fixed an error after merge.
Browse files Browse the repository at this point in the history
  • Loading branch information
jackmax committed Dec 26, 2016
1 parent 8651ec2 commit 8e73733
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PKMN-NTR/Helpers/PokeDigger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ private void DigWorker_RunWorkerCompleted(object sender, RunWorkerCompletedEvent
Bitmap sprite = getSprite(pkInfo.Species, pkInfo.AltForm, pkInfo.IsEgg);
ResultsGrid.Rows[i].Cells[0].Value = sprite;
ResultsGrid.Rows[i].Height = sprite.Height;
ResultsGrid.Rows[i].Cells[1].Value = Program.PKTable.getLevel(pkInfo.Species, (int)pkInfo.EXP);
ResultsGrid.Rows[i].Cells[1].Value = LookupTable.getLevel(pkInfo.Species, (int)pkInfo.EXP);
ResultsGrid.Rows[i].Cells[2].Value = pkInfo.Nickname;
ResultsGrid.Rows[i].Cells[4].Value = r.offset.ToString("X8");
i++;
Expand Down

0 comments on commit 8e73733

Please sign in to comment.