diff --git a/Saradomin/Utilities/CrossPlatform.cs b/Saradomin/Utilities/CrossPlatform.cs index bac991b..202f3aa 100644 --- a/Saradomin/Utilities/CrossPlatform.cs +++ b/Saradomin/Utilities/CrossPlatform.cs @@ -201,9 +201,7 @@ namespace Saradomin.Utilities Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "2009scape" ); - if (Directory.Exists(userProfile)) - Directory.Move(userProfile, appData); - return appData; + return Directory.Exists(userProfile) ? userProfile : appData; } }