From a02be6c09721a38a0de7680eef609c1655ae06aa Mon Sep 17 00:00:00 2001 From: thororen1234 <78185467+thororen1234@users.noreply.github.com> Date: Tue, 20 Aug 2024 11:10:58 -0400 Subject: [PATCH] Equibop Flag For WebKeybinds --- src/plugins/webKeybinds.web/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/webKeybinds.web/index.ts b/src/plugins/webKeybinds.web/index.ts index 1c43dc0c..d2f31ead 100644 --- a/src/plugins/webKeybinds.web/index.ts +++ b/src/plugins/webKeybinds.web/index.ts @@ -35,7 +35,7 @@ export default definePlugin({ if (hasCtrl) switch (e.key) { case "t": case "T": - if (!IS_VESKTOP) return; + if (!IS_VESKTOP || !IS_EQUIBOP) return; e.preventDefault(); if (e.shiftKey) { if (SelectedGuildStore.getGuildId()) NavigationRouter.transitionToGuild("@me"); @@ -49,7 +49,7 @@ export default definePlugin({ } break; case "Tab": - if (!IS_VESKTOP) return; + if (!IS_VESKTOP || !IS_EQUIBOP) return; const handler = e.shiftKey ? KeyBinds.SERVER_PREV : KeyBinds.SERVER_NEXT; handler.action(e); break;