forked from tools/josh
1
0
Fork 0

Fix unknown command error message

This commit is contained in:
Florine W. Dekker 2018-11-29 13:11:57 +01:00
parent d32fcf6fde
commit e4f97da372
Signed by: FWDekker
GPG Key ID: B1B567AF58D6EE0F
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ class Commands {
} else if (args.getCommand().trim() === "") {
return "";
} else {
return `Unknown command '${args[0]}'`
return `Unknown command '${args.getCommand()}'`
}
}