From dce26a19d458f034a05ed1cce053a63d79ec4539 Mon Sep 17 00:00:00 2001 From: bluepilledgreat <97983689+bluepilledgreat@users.noreply.github.com> Date: Wed, 4 Oct 2023 14:56:47 +0100 Subject: [PATCH] fix rbxl opening --- Bloxstrap/App.xaml.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Bloxstrap/App.xaml.cs b/Bloxstrap/App.xaml.cs index 86ae915..4f3a520 100644 --- a/Bloxstrap/App.xaml.cs +++ b/Bloxstrap/App.xaml.cs @@ -247,6 +247,11 @@ namespace Bloxstrap isStudioLaunch = true; isStudioAuth = true; } + else if (LaunchArgs[0] == "-ide" && LaunchArgs.Length >= 2) + { + commandLine = $"-task EditFile -localPlaceFile {LaunchArgs[1]}"; + isStudioLaunch = true; + } else { commandLine = "--app";