Fixed incorrect operation while checking arg

This commit is contained in:
Maddox Werts 2025-03-21 10:18:03 -04:00
parent f94f0008b9
commit 894ef92ac3

View file

@ -25,7 +25,7 @@ impl Arguments {
// Going through all arguments
for i in 0..args.len() {
// Checking if it's an argument
if args[i].starts_with("--") {
if !args[i].starts_with("--") {
continue;
}