enable studio features

This commit is contained in:
bluepilledgreat 2024-06-15 10:46:38 +01:00
parent b84522a643
commit e72ef9d202
2 changed files with 8 additions and 4 deletions

View File

@ -1,4 +1,6 @@
using System.Windows;
#define STUDIO_FEATURES
using System.Windows;
using System.Windows.Forms;
using Microsoft.Win32;

View File

@ -1,4 +1,6 @@
using Bloxstrap.Enums;
#define STUDIO_FEATURES
using Bloxstrap.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
@ -121,12 +123,12 @@ namespace Bloxstrap
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}\"";
}
}