diff --git a/src/tiers.rs b/src/tiers.rs index bd3fd19..8d9e305 100644 --- a/src/tiers.rs +++ b/src/tiers.rs @@ -48,6 +48,7 @@ pub struct Badge { pub struct AllPlayerInfo { players: Vec, unknown: Vec, + fetch_unknown: bool, } // === Routes === @@ -100,7 +101,11 @@ pub async fn get_all() -> RouteResponse> { } } - Ok(Json(AllPlayerInfo { players, unknown })) + Ok(Json(AllPlayerInfo { + players, + unknown, + fetch_unknown: true, + })) } /// (technically) no-op. forwards the request straight to mctiers