Remove word filtering of expressions via command

When used as a command, eg. `/bob` or `/e bob`,
the word filters are disabled.
This commit is contained in:
Stubenhocker1399
2019-09-06 11:39:19 -05:00
committed by Eliot Partridge
parent 829fa3c957
commit a761dfaa8e
3 changed files with 15 additions and 15 deletions
+1 -1
View File
@@ -121,7 +121,7 @@ export const createSay =
}
}
} else {
const expression = parseExpression(text.substr(1));
const expression = parseExpression(text.substr(1), true);
if (expression) {
setEntityExpression(client.pony, expression);