diff --git a/commands/CommandVoteParser.js b/commands/CommandVoteParser.js index 3f3c5e5116cc04d7b4a060c3a75eff9cb9176b37..10b43391028ae66b45a7a3fb1fcad396778891bc 100644 --- a/commands/CommandVoteParser.js +++ b/commands/CommandVoteParser.js @@ -12,7 +12,7 @@ class CommandVoteParser{ const content = message.content.toLowerCase(); if(content.startsWith(this.command)){ const score = parseInt(content.slice(this.command.length)); - if(score > 1){ + if(score > 0){ this.voteParser.setScore(score); message.reply(`Fait, score à ${score}`); }