Skip to content

Commit

Permalink
prevent value from being parsed as an argument
Browse files Browse the repository at this point in the history
  • Loading branch information
bluepilledgreat committed Dec 31, 2024
1 parent 0020db0 commit 5d1aa50
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Bloxstrap/LaunchSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ public LaunchSettings(string[] args)
if (i < Args.Length - 1 && Args[i+1] is string nextArg && !nextArg.StartsWith('-'))
{
flag.Data = nextArg;
i++;
App.Logger.WriteLine(LOG_IDENT, $"Identifier '{identifier}' is active with data");
}
else
Expand Down

0 comments on commit 5d1aa50

Please sign in to comment.