Skip to content

Commit

Permalink
fix it
Browse files Browse the repository at this point in the history
  • Loading branch information
bluepilledgreat committed Jun 15, 2024
1 parent e72ef9d commit 6ad9bfc
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion Bloxstrap/Bootstrapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ private async Task StartRoblox()
_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 ";
Expand Down
3 changes: 0 additions & 3 deletions Bloxstrap/LaunchSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,6 @@ public void ParseRoblox()
{
RobloxLaunchArgs = ProtocolHandler.ParseUri(arg);

if (!RobloxLaunchArgs.Contains("-startEvent"))
RobloxLaunchArgs += " -startEvent www.roblox.com/robloxQTStudioStartedEvent";

RobloxLaunchMode = LaunchMode.Studio;
}
else if (arg.StartsWith("roblox-studio-auth:"))
Expand Down

0 comments on commit 6ad9bfc

Please sign in to comment.