Fix missing arg in locale str for invalid accent

This commit is contained in:
Vortrex
2021-11-28 22:43:37 -06:00
parent dd4fb00fd0
commit 2c4c1effb1

View File

@@ -45,7 +45,7 @@ function setAccentCommand(command, params, client) {
let accentId = getAccentFromParams(params); let accentId = getAccentFromParams(params);
if(!accentId) { if(!accentId) {
messagePlayerError(client, getLocaleString("AccentNotFound")); messagePlayerError(client, getLocaleString(client, "AccentNotFound"));
return false; return false;
} }