forked from mirror/Riven
Remove old archived match IDs, add some new EUW1 match IDs
This commit is contained in:
parent
fc42abcbe2
commit
ac76a87367
3 changed files with 31 additions and 19 deletions
|
@ -13,7 +13,7 @@ use riven::consts::*;
|
|||
const ROUTE: RegionalRoute = RegionalRoute::AMERICAS;
|
||||
|
||||
static MATCHES: &[&str] = &[
|
||||
"NA1_3923487226",
|
||||
// "NA1_3923487226", // Archived 2023-08-17
|
||||
"NA1_4049206905",
|
||||
"NA1_4052515784",
|
||||
"NA1_4062578191",
|
||||
|
|
|
@ -11,25 +11,29 @@ use riven::consts::*;
|
|||
|
||||
const ROUTE: PlatformRoute = PlatformRoute::JP1;
|
||||
|
||||
// Archived 2023-08-17
|
||||
// // `teamPosition` empty:
|
||||
// // AFK:
|
||||
// "JP1_312062554",
|
||||
// "JP1_289504387",
|
||||
// "JP1_285434511",
|
||||
// "JP1_307559381",
|
||||
// "JP1_292569767",
|
||||
// "JP1_300507433",
|
||||
// "JP1_283568774",
|
||||
// "JP1_310138781",
|
||||
// // `individualPosition` is set but `teamPosition` is empty due to AFK slightly after beginning:
|
||||
// "JP1_285797147",
|
||||
// // Illegal big `championId`s. https://github.com/RiotGames/developer-relations/issues/553
|
||||
// "JP1_267647303",
|
||||
// "JP1_273343663",
|
||||
|
||||
static MATCHES: &[&str] = &[
|
||||
// Regular game:
|
||||
"KR_5495121707",
|
||||
// `teamPosition` empty:
|
||||
// AFK:
|
||||
"JP1_312062554",
|
||||
"JP1_326464722",
|
||||
"JP1_289504387",
|
||||
"JP1_285434511",
|
||||
"JP1_307559381",
|
||||
"JP1_292569767",
|
||||
"JP1_310138781",
|
||||
"JP1_300507433",
|
||||
"JP1_283568774",
|
||||
// `individualPosition` is set but `teamPosition` is empty due to AFK slightly after beginning:
|
||||
"JP1_285797147",
|
||||
// Illegal big `championId`s. https://github.com/RiotGames/developer-relations/issues/553
|
||||
"JP1_267647303",
|
||||
"JP1_273343663",
|
||||
// Only has participant IDs for blue team.
|
||||
"JP1_391732436",
|
||||
// New field `ParticipantChallenges` `twoWardsOneSweeperCount`
|
||||
|
|
|
@ -11,14 +11,22 @@ use riven::consts::*;
|
|||
|
||||
const ROUTE: RegionalRoute = RegionalRoute::EUROPE;
|
||||
|
||||
// Archived 2023-08-17
|
||||
// // Illegal big `championId`s. https://github.com/RiotGames/developer-relations/issues/553
|
||||
// "EUW1_5097684633",
|
||||
// "EUW1_5097963383",
|
||||
// "EUW1_5102203800", // https://github.com/MingweiSamuel/Riven/issues/36
|
||||
// "EUW1_5765650307", // https://gist.github.com/MingweiSamuel/d5f9dc40cc5a80a9255e488f27705c56?permalink_comment_id=4088256#gistcomment-4088256
|
||||
|
||||
static MATCHES: &[&str] = &[
|
||||
// Illegal big `championId`s. https://github.com/RiotGames/developer-relations/issues/553
|
||||
"EUW1_5097684633",
|
||||
"EUW1_5097963383",
|
||||
"EUW1_5102203800", // https://github.com/MingweiSamuel/Riven/issues/36
|
||||
"EUW1_5765650307", // https://gist.github.com/MingweiSamuel/d5f9dc40cc5a80a9255e488f27705c56?permalink_comment_id=4088256#gistcomment-4088256
|
||||
// New ARENA 2v2v2v2 game mode
|
||||
"EUW1_6511808246", // https://github.com/MingweiSamuel/Camille/issues/99
|
||||
// Added 2023-08-27
|
||||
"EUW1_6569580003",
|
||||
"EUW1_6569417645",
|
||||
"EUW1_6568707352",
|
||||
"EUW1_6568635198",
|
||||
"EUW1_6568537080",
|
||||
];
|
||||
|
||||
async_tests! {
|
||||
|
|
Loading…
Reference in a new issue