diff --git a/src/App.tsx b/src/App.tsx index b2e5280..3970981 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -130,12 +130,8 @@ export default function App() { const actionId = parseInt(logParameter3, 16) const isCombatAction = - (actionId >= 9 && actionId <= 30000) || - actionId === ACTION_IDS.Sprint || - actionId === ACTION_IDS["Release Iron Will"] || - actionId === ACTION_IDS["Release Defiance"] || - actionId === ACTION_IDS["Release Grit"] || - actionId === ACTION_IDS["Release Royal Guard"] + (actionId >= 9 && actionId <= 40000) || + actionId === ACTION_IDS.Sprint const isCraftingAction = actionId >= 100001 && actionId <= 100300 const isBugOrDuplicate = logTimestamp === lastTimestamp const isItem = ability.startsWith("item_") diff --git a/src/constants.ts b/src/constants.ts index c9d69b7..b30ad97 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -1,9 +1,5 @@ export const ACTION_IDS = { Sprint: 3, - "Release Iron Will": 32065, - "Release Defiance": 32066, - "Release Grit": 32067, - "Release Royal Guard": 32068, } as const // https://github.com/OverlayPlugin/cactbot/blob/main/docs/LogGuide.md