add task to uri map

This commit is contained in:
bluepilledgreat 2023-10-04 13:19:44 +01:00
parent cc4e5d1c84
commit 529262527c
2 changed files with 4 additions and 2 deletions

View File

@ -230,7 +230,7 @@ namespace Bloxstrap
}
else if (LaunchArgs[0].StartsWith("roblox-studio:") || LaunchArgs[0].StartsWith("roblox-studio-auth:"))
{
commandLine = LaunchArgs[0];
commandLine = ProtocolHandler.ParseUri(LaunchArgs[0]);
isStudioLaunch = true;
}
else

View File

@ -18,7 +18,9 @@ namespace Bloxstrap
{ "browsertrackerid", "-b " },
{ "robloxLocale", "--rloc " },
{ "gameLocale", "--gloc " },
{ "channel", "-channel " }
{ "channel", "-channel " },
// studio
{ "task", "-task " },
};
public static string ParseUri(string protocol)