From 724600c94c59c7d3692aefead49dff43bf4db78d Mon Sep 17 00:00:00 2001 From: vhaudiquet Date: Sat, 7 Dec 2024 16:16:03 +0100 Subject: [PATCH] Ignore zephyr --- match_collector/champion_stat.ts | 3 +++ 1 file changed, 3 insertions(+) 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;