From 4944944c7a98809ab750643a614780ef9fe11e83 Mon Sep 17 00:00:00 2001 From: Lesueur Benjamin Date: Mon, 28 Oct 2024 08:43:42 +0100 Subject: [PATCH] Disable hotkey rumble when IsInternal (GyroHotkeys) --- HandheldCompanion/Misc/Hotkey.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HandheldCompanion/Misc/Hotkey.cs b/HandheldCompanion/Misc/Hotkey.cs index 293aac05c..97b44ecc0 100644 --- a/HandheldCompanion/Misc/Hotkey.cs +++ b/HandheldCompanion/Misc/Hotkey.cs @@ -63,7 +63,7 @@ public object Clone() public void Execute(bool onKeyDown, bool onKeyUp, bool IsBackground) { bool Rumble = SettingsManager.GetBoolean("HotkeyRumbleOnExecution"); - if (Rumble && !IsBackground) + if (Rumble && !IsBackground && !IsInternal) ControllerManager.GetTargetController()?.Rumble(); command?.Execute(command.OnKeyDown, command.OnKeyUp, IsBackground);