diff --git a/Application/EventParsers/BaseEventParser.cs b/Application/EventParsers/BaseEventParser.cs index 365232fb..15637929 100644 --- a/Application/EventParsers/BaseEventParser.cs +++ b/Application/EventParsers/BaseEventParser.cs @@ -209,7 +209,7 @@ public virtual GameEvent GenerateGameEvent(string logLine) // avoid parsing base script event (which has no viable properties) // and anticheat events as they are manually mapped. // for performance as dynamic "Invoke" is relatively costly due - if (isParseIgnoredEvent) + if (!isParseIgnoredEvent) { createdEvent.ParseArguments(); }