Weed out some potential bugs

This commit is contained in:
pizzaboxer 2024-10-06 21:12:34 +01:00
parent 031b5a859f
commit 947033245f
No known key found for this signature in database
GPG Key ID: 59D4A1DBAD0F2BA8
2 changed files with 1 additions and 4 deletions

View File

@ -604,9 +604,6 @@ namespace Bloxstrap
{ {
App.Logger.WriteLine(LOG_IDENT, "Could not delete executable/folder, Roblox may still be running. Aborting update."); App.Logger.WriteLine(LOG_IDENT, "Could not delete executable/folder, Roblox may still be running. Aborting update.");
App.Logger.WriteException(LOG_IDENT, ex); App.Logger.WriteException(LOG_IDENT, ex);
Directory.Delete(AppData.Directory);
return; return;
} }

View File

@ -572,7 +572,7 @@ namespace Bloxstrap
App.FastFlags.SetValue("FFlagFixGraphicsQuality", null); App.FastFlags.SetValue("FFlagFixGraphicsQuality", null);
Directory.Delete(Path.Combine(Paths.Base, "Versions")); Directory.Delete(Path.Combine(Paths.Base, "Versions"), true);
} }
App.Settings.Save(); App.Settings.Save();