ncvescera/GayPass

Low Volume + Never Play Sounds Bug

Closed this issue · 1 comments

When Never Play Sounds mode is enabled and Music Volume is low, the Low Volume Level popup shows anyway.

The bug is in this line:

if (currentVolume <= 5 && !settingManager.loudAF)

Replace with:

        if (currentVolume <= 5 && !settingManager.loudAF && !settingManager.soundNever)

That should fix the issue !