Skip to content

Commit

Permalink
Cyclopsguy
Browse files Browse the repository at this point in the history
  • Loading branch information
prplnorangesoda committed Sep 24, 2024
1 parent 7b3782b commit 1d38b28
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/steamapi.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ pub struct PrivatelyAvailableSummary {
pub gameserverip: Option<String>,
pub gameextrainfo: Option<String>,
#[deprecated(note = "use loccityid")]
pub cityid: Option<String>,
pub cityid: Option<i64>,
pub loccountrycode: Option<String>,
pub locstatecode: Option<String>,
pub loccityid: Option<String>,
pub loccityid: Option<i64>,
}

#[derive(serde::Deserialize, serde::Serialize)]
Expand Down Expand Up @@ -112,10 +112,10 @@ struct AllPlayerInfo {
pub gameserverip: Option<String>,
pub gameextrainfo: Option<String>,
#[deprecated(note = "use loccityid")]
pub cityid: Option<String>,
pub cityid: Option<i64>,
pub loccountrycode: Option<String>,
pub locstatecode: Option<String>,
pub loccityid: Option<String>,
pub loccityid: Option<i64>,
/// 64bit SteamID of the user.
pub steamid: Option<String>,
/// The user's display name.
Expand Down

0 comments on commit 1d38b28

Please sign in to comment.