diff options
| author | oldmud0 <oldmud0@users.noreply.github.com> | 2018-05-22 22:47:16 -0500 |
|---|---|---|
| committer | oldmud0 <oldmud0@users.noreply.github.com> | 2018-05-22 22:47:16 -0500 |
| commit | fc7555116a8152b2967c4ccd8f8afc49facbc16f (patch) | |
| tree | 840dbb72bd0c5c8e4154b75aedb69d9689b35378 | |
| parent | 2b9e81b2a9e52149f23adcae509afe6904db372b (diff) | |
Fix blip volume slider (again)
| -rw-r--r-- | webAO/client.js | 2 |
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; } } |
