From 5d1aa50753002be94748e2394898042bc2bf0bcd Mon Sep 17 00:00:00 2001 From: bluepilledgreat <97983689+bluepilledgreat@users.noreply.github.com> Date: Tue, 31 Dec 2024 09:23:31 +0000 Subject: [PATCH] prevent value from being parsed as an argument --- Bloxstrap/LaunchSettings.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Bloxstrap/LaunchSettings.cs b/Bloxstrap/LaunchSettings.cs index f2ae908..f8492f7 100644 --- a/Bloxstrap/LaunchSettings.cs +++ b/Bloxstrap/LaunchSettings.cs @@ -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