From 9bac5a32c26187f8a031d8d47cda51226742f064 Mon Sep 17 00:00:00 2001 From: Garry Newman Date: Wed, 19 Feb 2020 14:40:21 +0000 Subject: [PATCH] RequestEncryptedAppTicketAsync will return null on subsequent calls if they're too often --- Facepunch.Steamworks/SteamUser.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Facepunch.Steamworks/SteamUser.cs b/Facepunch.Steamworks/SteamUser.cs index 0a3c72a..24e8a6a 100644 --- a/Facepunch.Steamworks/SteamUser.cs +++ b/Facepunch.Steamworks/SteamUser.cs @@ -411,6 +411,7 @@ namespace Steamworks /// Requests an application ticket encrypted with the secret "encrypted app ticket key". /// The encryption key can be obtained from the Encrypted App Ticket Key page on the App Admin for your app. /// There can only be one call pending, and this call is subject to a 60 second rate limit. + /// If you get a null result from this it's probably because you're calling it too often. /// This can fail if you don't have an encrypted ticket set for your app here https://partner.steamgames.com/apps/sdkauth/ /// public static async Task RequestEncryptedAppTicketAsync( byte[] dataToInclude )