Fix grammar

This commit is contained in:
Dragon Fire
2020-03-26 00:36:03 -04:00
parent 8c435a8389
commit b0b092e129
+1 -1
View File
@@ -58,7 +58,7 @@ module.exports = class PickANumberCommand extends Command {
if (opponent.bot) {
const valid = nums.filter(num => num !== player1Pick);
player2Pick = valid[Math.floor(Math.random() * valid.length)];
await msg.say(`Okay, ${clientOpp ? 'I' : `${opponent}`} pick${clientOpp ? 's' : ''} ${player2Pick}!`);
await msg.say(`Okay, ${clientOpp ? 'I' : `${opponent}`} pick${clientOpp ? '' : 's'} ${player2Pick}!`);
} else {
userTurn = false;
await msg.say(`${opponent}, pick a number from 1 to 10, except ${player1Pick}.`);