We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aac2b9f commit f5e5475Copy full SHA for f5e5475
lib/actions/sayall.js
@@ -7,7 +7,7 @@ let port;
7
let system;
8
9
function sayAll(player, values) {
10
- const text = values[0];
+ const text = decodeURIComponent(values[0]);
11
let announceVolume;
12
let language;
13
@@ -31,4 +31,4 @@ function sayAll(player, values) {
31
module.exports = function (api) {
32
port = api.getPort();
33
api.registerAction('sayall', sayAll);
34
-};
+};
0 commit comments