From 6f25aebc0c02ed1d9ba6b2545ada595a5f274366 Mon Sep 17 00:00:00 2001 From: "caleb.mabry.15@cnu.edu" Date: Sun, 13 Mar 2022 23:48:09 -0400 Subject: Fix blip slider to actually work --- webAO/client.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/webAO/client.js b/webAO/client.js index 6cdcc50..8bac1cc 100644 --- a/webAO/client.js +++ b/webAO/client.js @@ -2488,7 +2488,8 @@ window.changeTestimonyVolume = changeTestimonyVolume; * Triggered by the blip volume slider. */ export function changeBlipVolume() { - viewport.blipVolume = document.getElementById('client_bvolume').value; + const blipVolume = document.getElementById('client_bvolume').value; + viewport.blipChannels.forEach((channel) => channel.volume = blipVolume); setCookie('blipVolume', document.getElementById('client_bvolume').value); } window.changeBlipVolume = changeBlipVolume; -- cgit