diff --git a/main.js b/main.js index b7b04be..c915fc9 100644 --- a/main.js +++ b/main.js @@ -38,7 +38,7 @@ client.on('message', message => { if(msg.startsWith("henlo") && message.author.bot == false){ var emojis = ["🥰", "🐄", "🐮", "❤️", "👋", "🤠", "😊"]; - let randomNum = Math.floor(Math.random() * 8); + let randomNum = Math.floor(Math.random() * 7); message.channel.send("Henlooo " + message.author.username + " " + emojis[randomNum]); } else if (message.mentions.channels.first() && yes){ @@ -66,7 +66,7 @@ client.on('message', message => { yes = false; } else if (msg.startsWith("how ye") && message.author.bot === false){ - let randomNum = Math.floor(Math.random() * 6); + let randomNum = Math.floor(Math.random() * 5); var responses = ["Not bad, how yee?", "MOOdy", "A bit sad 😢", "Good, how yee?", "I'm fine, how yee?"]; message.channel.send(responses[randomNum]); }