diff --git a/riven/src/consts/champion.rs b/riven/src/consts/champion.rs index d6f750d..ce691b2 100644 --- a/riven/src/consts/champion.rs +++ b/riven/src/consts/champion.rs @@ -100,6 +100,7 @@ newtype_enum! { /// `NAUTILUS` | "Nautilus" | "Nautilus" | 111 /// `NEEKO` | "Neeko" | "Neeko" | 518 /// `NIDALEE` | "Nidalee" | "Nidalee" | 76 + /// `NILAH` | "Nilah" | "Nilah" | 895 /// `NOCTURNE` | "Nocturne" | "Nocturne" | 56 /// `NUNU_WILLUMP` | "Nunu & Willump" | "Nunu" | 20 /// `OLAF` | "Olaf" | "Olaf" | 2 @@ -348,6 +349,8 @@ newtype_enum! { NEEKO = 518, /// `76`. NIDALEE = 76, + /// `895`. + NILAH = 895, /// `56`. NOCTURNE = 56, /// `20`. @@ -591,6 +594,7 @@ impl Champion { Self::NAUTILUS => Some("Nautilus"), Self::NEEKO => Some("Neeko"), Self::NIDALEE => Some("Nidalee"), + Self::NILAH => Some("Nilah"), Self::NOCTURNE => Some("Nocturne"), Self::NUNU_WILLUMP => Some("Nunu & Willump"), Self::OLAF => Some("Olaf"), @@ -775,6 +779,7 @@ impl Champion { Self::NAUTILUS => Some("Nautilus"), Self::NEEKO => Some("Neeko"), Self::NIDALEE => Some("Nidalee"), + Self::NILAH => Some("Nilah"), Self::NOCTURNE => Some("Nocturne"), Self::NUNU_WILLUMP => Some("Nunu"), Self::OLAF => Some("Olaf"), @@ -996,6 +1001,7 @@ impl std::str::FromStr for Champion { /* NAUT */ [ 'N', 'A', 'U', 'T'] => Ok(Champion::NAUTILUS), /* NEEK */ [ 'N', 'E', 'E', 'K'] => Ok(Champion::NEEKO), /* NIDA */ [ 'N', 'I', 'D', 'A'] => Ok(Champion::NIDALEE), + /* NILA */ [ 'N', 'I', 'L', 'A'] => Ok(Champion::NILAH), /* NOCT */ [ 'N', 'O', 'C', 'T'] => Ok(Champion::NOCTURNE), /* NUNU */ [ 'N', 'U', 'N', 'U'] => Ok(Champion::NUNU_WILLUMP), /* OLAF */ [ 'O', 'L', 'A', 'F'] => Ok(Champion::OLAF), diff --git a/riven/src/endpoints.rs b/riven/src/endpoints.rs index af2b9b9..5bc83b3 100644 --- a/riven/src/endpoints.rs +++ b/riven/src/endpoints.rs @@ -7,7 +7,7 @@ /////////////////////////////////////////////// // http://www.mingweisamuel.com/riotapi-schema/tool/ -// Version 8afe7b8e927da46a6f41108e6dc7e1a8c71d89b9 +// Version 3417abd2af40c6500ced39393b045652896cd0dd //! Automatically generated endpoint handles. #![allow(clippy::let_and_return, clippy::too_many_arguments)] diff --git a/riven/src/meta.rs b/riven/src/meta.rs index c819c26..cfc8c53 100644 --- a/riven/src/meta.rs +++ b/riven/src/meta.rs @@ -7,7 +7,7 @@ /////////////////////////////////////////////// // http://www.mingweisamuel.com/riotapi-schema/tool/ -// Version 8afe7b8e927da46a6f41108e6dc7e1a8c71d89b9 +// Version 3417abd2af40c6500ced39393b045652896cd0dd //! Metadata about the Riot API and Riven. //! diff --git a/riven/src/models.rs b/riven/src/models.rs index bc27535..c97d1a5 100644 --- a/riven/src/models.rs +++ b/riven/src/models.rs @@ -7,7 +7,7 @@ /////////////////////////////////////////////// // http://www.mingweisamuel.com/riotapi-schema/tool/ -// Version 8afe7b8e927da46a6f41108e6dc7e1a8c71d89b9 +// Version 3417abd2af40c6500ced39393b045652896cd0dd #![allow(missing_docs)]