From ab8eb3cef34fe105ff9175c70721956fd3563f49 Mon Sep 17 00:00:00 2001 From: bluepilledgreat <97983689+bluepilledgreat@users.noreply.github.com> Date: Sat, 5 Apr 2025 19:04:10 +0100 Subject: [PATCH] terminate process on relaunch --- Bloxstrap/App.xaml.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Bloxstrap/App.xaml.cs b/Bloxstrap/App.xaml.cs index b675e85..cb09a2f 100644 --- a/Bloxstrap/App.xaml.cs +++ b/Bloxstrap/App.xaml.cs @@ -313,6 +313,7 @@ namespace Bloxstrap if (IsRobloxInstallerPath(Paths.Process, out string? truePath)) { Process.Start(truePath, e.Args); + Terminate(ErrorCode.ERROR_SUCCESS); return; }