aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsD <stoned@derpymail.org>2020-04-02 12:51:27 +0200
committersD <stoned@derpymail.org>2020-04-02 12:51:27 +0200
commit8a52f77a50055a1d2f80a4e79582d521d8980c5a (patch)
treec1f0b527eb280f227e9b1ad8c3621524276f38cd
parentf87f98d1e265bf205579b69c41e5df5f3267a625 (diff)
it's not a const anymore
-rw-r--r--webAO/client.js2
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}`);