diff --git a/match_collector/champion_stat.ts b/match_collector/champion_stat.ts index 28e8e04..7d9410d 100644 --- a/match_collector/champion_stat.ts +++ b/match_collector/champion_stat.ts @@ -140,6 +140,9 @@ function handleMatchItems(timeline, participant: any, participantIndex : number, if(itemInfo.categories.includes("Consumable")) continue; if(itemInfo.categories.includes("Trinket")) continue; + // Ignore zephyr + if(event.itemId == 3172) continue; + // Ignore Cull as not-first item if(event.itemId == 1083 && items.length >= 1) continue;