diff options
Diffstat (limited to 'vendor/github.com/Philipp15b/go-steam/auth.go')
-rw-r--r-- | vendor/github.com/Philipp15b/go-steam/auth.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/github.com/Philipp15b/go-steam/auth.go b/vendor/github.com/Philipp15b/go-steam/auth.go index f3910e24..92fa6edb 100644 --- a/vendor/github.com/Philipp15b/go-steam/auth.go +++ b/vendor/github.com/Philipp15b/go-steam/auth.go @@ -119,7 +119,7 @@ func (a *Auth) handleLogOnResponse(packet *Packet) { ExtendedResult: EResult(body.GetEresultExtended()), OutOfGameSecsPerHeartbeat: body.GetOutOfGameHeartbeatSeconds(), InGameSecsPerHeartbeat: body.GetInGameHeartbeatSeconds(), - PublicIp: body.GetPublicIp(), + PublicIp: body.GetDeprecatedPublicIp(), ServerTime: body.GetRtime32ServerTime(), AccountFlags: EAccountFlags(body.GetAccountFlags()), ClientSteamId: SteamId(body.GetClientSuppliedSteamid()), @@ -127,7 +127,7 @@ func (a *Auth) handleLogOnResponse(packet *Packet) { CellId: body.GetCellId(), CellIdPingThreshold: body.GetCellIdPingThreshold(), Steam2Ticket: body.GetSteam2Ticket(), - UsePics: body.GetUsePics(), + UsePics: body.GetDeprecatedUsePics(), WebApiUserNonce: body.GetWebapiAuthenticateUserNonce(), IpCountryCode: body.GetIpCountryCode(), VanityUrl: body.GetVanityUrl(), |