diff --git a/Facepunch.Steamworks/SteamUserStats.cs b/Facepunch.Steamworks/SteamUserStats.cs index e01c08f..97bbb31 100644 --- a/Facepunch.Steamworks/SteamUserStats.cs +++ b/Facepunch.Steamworks/SteamUserStats.cs @@ -144,7 +144,7 @@ namespace Steamworks /// /// How many days of day-by-day history to retrieve in addition to the overall totals. The limit is 60. /// OK indicates success, InvalidState means you need to call RequestCurrentStats first, Fail means the remote call failed - public static async Task RequestGlobalStats( int days ) + public static async Task RequestGlobalStatsAsync( int days ) { var result = await SteamUserStats.Internal.RequestGlobalStats( days ); if ( !result.HasValue ) return Result.Fail;