Skip to content

Commit

Permalink
enable studio features
Browse files Browse the repository at this point in the history
  • Loading branch information
bluepilledgreat committed Jun 15, 2024
1 parent b84522a commit e72ef9d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 3 additions & 1 deletion Bloxstrap/Bootstrapper.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using System.Windows;
#define STUDIO_FEATURES

using System.Windows;
using System.Windows.Forms;

using Microsoft.Win32;
Expand Down
8 changes: 5 additions & 3 deletions Bloxstrap/LaunchSettings.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using Bloxstrap.Enums;
#define STUDIO_FEATURES

using Bloxstrap.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
Expand Down Expand Up @@ -121,12 +123,12 @@ public void ParseRoblox()

if (Args.Length >= 2)
{
string pathArg = Args[i + 1];
string pathArg = Args[1];

if (pathArg.StartsWith('-'))
return; // likely a launch flag, ignore it.

i++; // path arg
//i++; // path arg
RobloxLaunchArgs = $"-task EditFile -localPlaceFile \"{pathArg}\"";
}
}
Expand Down

1 comment on commit e72ef9d

@burgerboxer
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Now where is channel switcher?

Please sign in to comment.