Skip to content

Commit f5e5475

Browse files
authored
Update sayall.js
1 parent aac2b9f commit f5e5475

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/actions/sayall.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ let port;
77
let system;
88

99
function sayAll(player, values) {
10-
const text = values[0];
10+
const text = decodeURIComponent(values[0]);
1111
let announceVolume;
1212
let language;
1313

@@ -31,4 +31,4 @@ function sayAll(player, values) {
3131
module.exports = function (api) {
3232
port = api.getPort();
3333
api.registerAction('sayall', sayAll);
34-
};
34+
};

0 commit comments

Comments
 (0)