From 6ad9bfcf34f965c32280b25a1f8e562dbd845f1a Mon Sep 17 00:00:00 2001 From: bluepilledgreat <97983689+bluepilledgreat@users.noreply.github.com> Date: Sat, 15 Jun 2024 18:16:07 +0100 Subject: [PATCH] fix it --- Bloxstrap/Bootstrapper.cs | 2 +- Bloxstrap/LaunchSettings.cs | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/Bloxstrap/Bootstrapper.cs b/Bloxstrap/Bootstrapper.cs index 4bb6d2c..b2b05e2 100644 --- a/Bloxstrap/Bootstrapper.cs +++ b/Bloxstrap/Bootstrapper.cs @@ -295,7 +295,7 @@ namespace Bloxstrap _launchCommandLine = _launchCommandLine.Replace("LAUNCHTIMEPLACEHOLDER", DateTimeOffset.Now.ToUnixTimeMilliseconds().ToString()); - if (_launchCommandLine.StartsWith("roblox-player:1")) + if (_launchCommandLine.StartsWith("roblox-player:1") || _launchCommandLine.StartsWith("roblox-studio:1")) _launchCommandLine += "+channel:"; else _launchCommandLine += " -channel "; diff --git a/Bloxstrap/LaunchSettings.cs b/Bloxstrap/LaunchSettings.cs index 0fec633..8b5e9bb 100644 --- a/Bloxstrap/LaunchSettings.cs +++ b/Bloxstrap/LaunchSettings.cs @@ -106,9 +106,6 @@ namespace Bloxstrap { RobloxLaunchArgs = ProtocolHandler.ParseUri(arg); - if (!RobloxLaunchArgs.Contains("-startEvent")) - RobloxLaunchArgs += " -startEvent www.roblox.com/robloxQTStudioStartedEvent"; - RobloxLaunchMode = LaunchMode.Studio; } else if (arg.StartsWith("roblox-studio-auth:"))