add way to stop

This commit is contained in:
Loïc Bersier 2019-07-24 02:15:05 +02:00
parent 84df353d51
commit 50575fd3b9

View file

@ -6,7 +6,7 @@ class guessCommand extends Command {
aliases: ['guess'],
category: 'minigame',
description: {
content: 'Guess the number',
content: 'Guess the number ( Say "stop" to stop playing )',
usage: '',
examples: ['']
}
@ -59,6 +59,8 @@ class guessCommand extends Command {
numberTry++;
if (input != secretnumber) {
tryAgain(input);
} else if (input == 'stop') {
return message.channel.send('Ok, let\'s stop playing :(');
} else {
if (numberTry > 1) {
return message.channel.send(`Congratulations! You won! It took you ${numberTry} turns!`);