prevent value from being parsed as an argument

This commit is contained in:
bluepilledgreat 2024-12-31 09:23:31 +00:00
parent 0020db0c46
commit 5d1aa50753

View File

@ -113,6 +113,7 @@ namespace Bloxstrap
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