fix: raise duck floor default from 1% to 2%
Some checks failed
CI / gitleaks (push) Failing after 3s
CI / lint (push) Successful in 23s
CI / test (3.11) (push) Has started running
CI / test (3.12) (push) Has started running
CI / build (push) Has been cancelled
CI / test (3.13) (push) Has been cancelled

Keep music audible during voice ducking instead of near-silent.
This commit is contained in:
user
2026-02-22 18:53:42 +01:00
parent e920ec5f10
commit 8d54322ce1

View File

@@ -48,7 +48,7 @@ def _ps(bot):
"task": None,
"done_event": None,
"duck_enabled": cfg.get("duck_enabled", True),
"duck_floor": cfg.get("duck_floor", 1),
"duck_floor": cfg.get("duck_floor", 2),
"duck_silence": cfg.get("duck_silence", 15),
"duck_restore": cfg.get("duck_restore", 30),
"duck_vol": None,