Request the stats on startup, harmless enough but useful

This commit is contained in:
Garry Newman 2019-04-30 10:40:59 +01:00
parent d67bd7d8ef
commit c609d7bb87

View File

@ -15,7 +15,10 @@ namespace Steamworks
get get
{ {
if ( _internal == null ) if ( _internal == null )
{
_internal = new ISteamUserStats(); _internal = new ISteamUserStats();
RequestCurrentStats();
}
return _internal; return _internal;
} }