diff options
| author | sD <stoned@derpymail.org> | 2020-04-02 12:51:27 +0200 |
|---|---|---|
| committer | sD <stoned@derpymail.org> | 2020-04-02 12:51:27 +0200 |
| commit | 8a52f77a50055a1d2f80a4e79582d521d8980c5a (patch) | |
| tree | c1f0b527eb280f227e9b1ad8c3621524276f38cd /webAO | |
| parent | f87f98d1e265bf205579b69c41e5df5f3267a625 (diff) | |
it's not a const anymore
Diffstat (limited to 'webAO')
| -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 d9eb830..e2d7911 100644 --- a/webAO/client.js +++ b/webAO/client.js @@ -622,7 +622,7 @@ class Client extends EventEmitter { } if (charID >= 0) { - const musicname = this.chars[charID].name; + musicname = this.chars[charID].name; appendICLog(`${musicname} changed music to ${track}`); } else { appendICLog(`The music was changed to ${track}`); |
