diff --git a/src/modules/patches/vibration-adjust.js b/src/modules/patches/vibration-adjust.js index ce9149a..97c428e 100644 --- a/src/modules/patches/vibration-adjust.js +++ b/src/modules/patches/vibration-adjust.js @@ -3,7 +3,7 @@ if (!window.BX_ENABLE_CONTROLLER_VIBRATION) { } const intensity = window.BX_VIBRATION_INTENSITY; -if (intensity && intensity < 1) { +if (intensity < 1) { e.leftMotorPercent *= intensity; e.rightMotorPercent *= intensity; e.leftTriggerMotorPercent *= intensity;