From d432f82e85f5c2892382192e4f33df5730971999 Mon Sep 17 00:00:00 2001 From: "sigonasr2, Sig, Sigo" Date: Tue, 7 Dec 2021 01:36:51 +0900 Subject: [PATCH] Update App.js Quick fix for EW actions. Combat Skill IDs go up into the high 26000's --- src/App.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.js b/src/App.js index 648a197..06f9b11 100644 --- a/src/App.js +++ b/src/App.js @@ -82,7 +82,7 @@ export default function App() { const action = parseInt(logParameter3, 16) if ( //sanity check the tea sis period wig snapped - ((action < 9 || action > 20000) && //is not a combat action + ((action < 9 || action > 30000) && //is not a combat action (action < 100001 || action > 100300)) || //and is not a crafting action (logTimestamp === lastTimestamp && action === lastAction) //or this action is a bug/duplicate )