Skip to content
This repository has been archived by the owner on May 10, 2023. It is now read-only.

Commit

Permalink
use "name" instead of "game_name"
Browse files Browse the repository at this point in the history
attempted fix for #2
  • Loading branch information
t-k365 committed Dec 6, 2022
1 parent 0789cdc commit ca628b4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ChampSelectNames/ChampSelectSpy.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.2.0.%2a</ApplicationVersion>
<ApplicationVersion>1.3.0.%2a</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<PublishWizardCompleted>true</PublishWizardCompleted>
<BootstrapperEnabled>true</BootstrapperEnabled>
Expand Down
2 changes: 1 addition & 1 deletion ChampSelectNames/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ private void Tmr1_Tick(object sender, EventArgs e)
{
foreach (DataRow row in dataTable.Rows)
{
participants.Add(row["game_name"].ToString());
participants.Add(row["name"].ToString());
}
if (chkAutoOPGG.Checked)
{
Expand Down
4 changes: 2 additions & 2 deletions ChampSelectNames/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
// indem Sie "*" wie unten gezeigt eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.2.0.0")]
[assembly: AssemblyFileVersion("1.2.0.0")]
[assembly: AssemblyVersion("1.3.0.0")]
[assembly: AssemblyFileVersion("1.3.0.0")]

0 comments on commit ca628b4

Please sign in to comment.