Skip to content

Commit

Permalink
v2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
LegoFigure11 committed May 13, 2022
1 parent accabca commit b2de6fd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<UseWindowsForms>true</UseWindowsForms>
<LangVersion>10</LangVersion>
<IsWebBootstrapper>false</IsWebBootstrapper>
<Version>2.0.1</Version>
<Version>2.1.0</Version>
<AssemblyTitle>SWSH_OWRNG_Generator_GUI</AssemblyTitle>
<Product>SWSH_OWRNG_Generator_GUI</Product>
<Copyright>Copyright © 2022</Copyright>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System.Collections.Generic;
using System.Drawing;
using System.Windows.Forms;


Expand Down Expand Up @@ -82,11 +81,11 @@ private void EncounterLookupResults_RowEnter(object sender, DataGridViewCellEven
MainWindow.CheckHeldItem.Checked = (bool)EncounterLookupResults[1, e.RowIndex].Value;
MainWindow.InputEMs.Text = EncounterLookupResults[3, e.RowIndex].Value.ToString();
MainWindow.CheckIsAbilityLocked.Checked = (string)EncounterLookupResults[4, e.RowIndex].Value != "-";

string[] LevelSubs = ((string)EncounterLookupResults[5, e.RowIndex].Value).Split(" - ");
string LevelMin = LevelSubs[0], LevelMax;
if (LevelSubs.Length == 2)
{
{
LevelMax = LevelSubs[1];
}
else
Expand Down

0 comments on commit b2de6fd

Please sign in to comment.