Skip to content

Commit

Permalink
Analytics: Fix filtering for marker remove all event
Browse files Browse the repository at this point in the history
  • Loading branch information
Sejsel committed Jul 8, 2024
1 parent ce7d01d commit b25e4d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EVTCAnalytics/Parsing/CombatItemFilters.cs
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ private static IEnumerable<Result> GetDirectPhysicalResultsForEventType(Type eve
if (eventType == typeof(AgentWeaponSwapEvent)) return [];
if (eventType == typeof(AgentMaxHealthUpdateEvent)) return [];
if (eventType == typeof(AgentMarkerEvent)) return [];
if (eventType == typeof(AgentMarkerEvent)) return [];
if (eventType == typeof(AgentMarkerRemoveAllEvent)) return [];
if (eventType == typeof(InitialBuffEvent)) return [];
if (eventType == typeof(PositionChangeEvent)) return [];
if (eventType == typeof(VelocityChangeEvent)) return [];
Expand Down

0 comments on commit b25e4d0

Please sign in to comment.