From 695aa650b8b203585bfabb34d5ef51c40a55c4a4 Mon Sep 17 00:00:00 2001 From: pointfeev Date: Tue, 13 Jun 2023 21:30:39 -0400 Subject: [PATCH] fix ubisoft uninstall all --- CreamInstaller/Forms/SelectForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CreamInstaller/Forms/SelectForm.cs b/CreamInstaller/Forms/SelectForm.cs index f157dfc..2d5d7a9 100644 --- a/CreamInstaller/Forms/SelectForm.cs +++ b/CreamInstaller/Forms/SelectForm.cs @@ -455,7 +455,7 @@ internal sealed partial class SelectForm : CustomForm { if (Program.Canceled) return; - if (Program.IsGameBlocked(name, gameDirectory) || !programsToScan.Any(c => c.platform is Platform.Ubisoft && c.id == gameId)) + if (!uninstallAll && (Program.IsGameBlocked(name, gameDirectory) || !programsToScan.Any(c => c.platform is Platform.Ubisoft && c.id == gameId))) continue; AddToRemainingGames(name); Task task = Task.Run(async () =>