1
0
Fork 0

add way to stop

akairo
Loïc Bersier 5 years ago
parent 84df353d51
commit 50575fd3b9

@ -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!`);

Loading…
Cancel
Save