Skip to content

Commit

Permalink
Merge pull request #36 from Aytackydln/lol-summonerId-long
Browse files Browse the repository at this point in the history
change LoL summonerId types to long
  • Loading branch information
diogotr7 authored Jul 30, 2024
2 parents 96bf647 + 6220c63 commit 8bb976d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public record Invitations(
string invitationType,
string state,
string timestamp,
int toSummonerId,
long toSummonerId,
string toSummonerName
);

Expand Down Expand Up @@ -73,7 +73,7 @@ public record LocalMember(
int secondaryChampionPreference,
bool showGhostedBanner,
int summonerIconId,
int summonerId,
long summonerId,
string summonerInternalName,
int summonerLevel,
string summonerName,
Expand Down Expand Up @@ -104,7 +104,7 @@ public record Members(
int secondaryChampionPreference,
bool showGhostedBanner,
int summonerIconId,
int summonerId,
long summonerId,
string summonerInternalName,
int summonerLevel,
string summonerName,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public record LobbyMember(
int secondaryChampionPreference,
bool showGhostedBanner,
int summonerIconId,
int summonerId,
long summonerId,
string summonerInternalName,
int summonerLevel,
string summonerName,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"Icon": "league-of-legends.jpg",
"Description": "League Of Legends game and client integration",
"Author": "diogotr7",
"Version": "1.0.1",
"Version": "1.0.2",
"Main": "Artemis.Plugins.Games.LeagueOfLegends.Module.dll",
"Website": "https://artemis-rgb.com/",
"Repository": "https://github.com/Artemis-RGB/Artemis.Plugins.Games"
Expand Down

0 comments on commit 8bb976d

Please sign in to comment.