Remove extraneous slash from unrecognized command

master
Curtis McEnroe 2018-08-07 22:19:00 -04:00
parent 7d76246c3f
commit 41e7105fec
No known key found for this signature in database
GPG Key ID: CEA2F97ADCFCD77C
1 changed files with 1 additions and 1 deletions

View File

@ -97,5 +97,5 @@ void input(char *input) {
COMMANDS[i].handler(input);
return;
}
uiFmt("/%s isn't a recognized command", command);
uiFmt("%s isn't a recognized command", command);
}