From 9b1f4eef89778177c2b8847722d4c257519758e2 Mon Sep 17 00:00:00 2001 From: bluepilledgreat <97983689+bluepilledgreat@users.noreply.github.com> Date: Wed, 4 Oct 2023 12:55:46 +0100 Subject: [PATCH] disable activity tracking if studio --- Bloxstrap/Bootstrapper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bloxstrap/Bootstrapper.cs b/Bloxstrap/Bootstrapper.cs index 5de2787..4effc87 100644 --- a/Bloxstrap/Bootstrapper.cs +++ b/Bloxstrap/Bootstrapper.cs @@ -328,7 +328,7 @@ namespace Bloxstrap return; } - if (App.Settings.Prop.EnableActivityTracking) + if (App.Settings.Prop.EnableActivityTracking && !_studioLaunch) { activityWatcher = new(); shouldWait = true;