Add a missing space in response message
This commit is contained in:
parent
627a0754fc
commit
31e5148e74
1 changed files with 2 additions and 2 deletions
|
|
@ -79,7 +79,7 @@ const subcommands: {[index: string]: subcommand} = {
|
|||
m = `Booooo, you lost! Answer: ${d.solution}`;
|
||||
break;
|
||||
case 4:
|
||||
m = `${d.current} \n(incorrect:${d.incorrect}/${config.game.max_incorrect})`;
|
||||
m = `${d.current} \n(incorrect: ${d.incorrect}/${config.game.max_incorrect})`;
|
||||
break;
|
||||
default: m = `Unknown guess status: ${d.status}`;
|
||||
};
|
||||
|
|
@ -119,7 +119,7 @@ const subcommands: {[index: string]: subcommand} = {
|
|||
m = `Booooo, you lost! Answer: ${d.solution}`;
|
||||
break;
|
||||
case 4:
|
||||
m = `${d.current} \n(incorrect:${d.incorrect}/${config.game.max_incorrect})`;
|
||||
m = `${d.current} \n(incorrect: ${d.incorrect}/${config.game.max_incorrect})`;
|
||||
break;
|
||||
default: m = `Unknown guess status: ${d.status}`;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue