aboutsummaryrefslogtreecommitdiff
path: root/webAO
diff options
context:
space:
mode:
authoroldmud0 <oldmud0@users.noreply.github.com>2018-05-22 22:47:16 -0500
committeroldmud0 <oldmud0@users.noreply.github.com>2018-05-22 22:47:16 -0500
commitfc7555116a8152b2967c4ccd8f8afc49facbc16f (patch)
tree840dbb72bd0c5c8e4154b75aedb69d9689b35378 /webAO
parent2b9e81b2a9e52149f23adcae509afe6904db372b (diff)
Fix blip volume slider (again)
Diffstat (limited to 'webAO')
-rw-r--r--webAO/client.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/webAO/client.js b/webAO/client.js
index f90c61a..36817c5 100644
--- a/webAO/client.js
+++ b/webAO/client.js
@@ -592,7 +592,7 @@ class Viewport {
*/
setBlipVolume(volume) {
for (let i = 0; i < this.blipChannels.length; i++) {
- this.blipChannels[i].volume = 0.5;
+ this.blipChannels[i].volume = volume;
}
}