mirror of
https://github.com/Facepunch/Facepunch.Steamworks.git
synced 2024-12-25 06:05:46 +03:00
Fixed InstallFolder exception
This folder does not always exist.
This commit is contained in:
parent
1cf2130703
commit
72bae11073
@ -114,7 +114,8 @@ public Client( uint appId )
|
||||
SteamId = native.user.GetSteamID();
|
||||
BetaName = native.apps.GetCurrentBetaName();
|
||||
OwnerSteamId = native.apps.GetAppOwner();
|
||||
InstallFolder = new DirectoryInfo( native.apps.GetAppInstallDir( AppId ) );
|
||||
if (!String.IsNullOrEmpty(native.apps.GetAppInstallDir(AppId)) && Directory.Exists(native.apps.GetAppInstallDir(AppId)))
|
||||
InstallFolder = new DirectoryInfo( native.apps.GetAppInstallDir( AppId ) );
|
||||
BuildId = native.apps.GetAppBuildId();
|
||||
CurrentLanguage = native.apps.GetCurrentGameLanguage();
|
||||
AvailableLanguages = native.apps.GetAvailableGameLanguages().Split( new[] {';'}, StringSplitOptions.RemoveEmptyEntries ); // TODO: Assumed colon separated
|
||||
|
Loading…
Reference in New Issue
Block a user