From f971be3f624fe5047789503aad75d000ed4f4ae2 Mon Sep 17 00:00:00 2001 From: bluepilledgreat <97983689+bluepilledgreat@users.noreply.github.com> Date: Wed, 4 Oct 2023 15:06:35 +0100 Subject: [PATCH] disable multi instance launching for studio --- Bloxstrap/App.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bloxstrap/App.xaml.cs b/Bloxstrap/App.xaml.cs index 4f3a520..1fcd9f7 100644 --- a/Bloxstrap/App.xaml.cs +++ b/Bloxstrap/App.xaml.cs @@ -286,7 +286,7 @@ namespace Bloxstrap Mutex? singletonMutex = null; - if (Settings.Prop.MultiInstanceLaunching) + if (Settings.Prop.MultiInstanceLaunching && !isStudioLaunch) { Logger.WriteLine(LOG_IDENT, "Creating singleton mutex");