Skip to content

Commit

Permalink
Disable hotkey rumble when IsInternal (GyroHotkeys)
Browse files Browse the repository at this point in the history
  • Loading branch information
Valkirie committed Oct 28, 2024
1 parent aa101b5 commit 4944944
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion HandheldCompanion/Misc/Hotkey.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 4944944

Please sign in to comment.