From c2927166f6b949f48fecef505010700115ed58c1 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Wed, 21 Jun 2023 02:19:17 -0700 Subject: [PATCH] Add auto summon token to app state --- utils/appState.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/utils/appState.tsx b/utils/appState.tsx index 214763ce..797f1664 100644 --- a/utils/appState.tsx +++ b/utils/appState.tsx @@ -49,6 +49,7 @@ interface AppState { element: number fullAuto: boolean autoGuard: boolean + autoSummon: boolean chargeAttack: boolean clearTime: number buttonCount?: number @@ -110,6 +111,7 @@ export const initialAppState: AppState = { raid: undefined, fullAuto: false, autoGuard: false, + autoSummon: false, chargeAttack: true, clearTime: 0, buttonCount: undefined,