Update main.js

This commit is contained in:
ZyLacx 2022-01-24 19:13:34 +01:00
parent eb595500e0
commit 590133906e

View file

@ -54,7 +54,7 @@ function gotMessage(message){
mood(message)
}
else if (msg.includes("tylko jedno")) {
message.channel.send("Koksu pięć gram odlecieć sam");
message.reply("Koksu pięć gram odlecieć sam");
}
if (msgContentSplit[0] == "hug") {
hug(message)
@ -69,7 +69,7 @@ function gotMessage(message){
function henlo(message){
var emojis = ["🥰", "🐄", "🐮", "❤️", "👋", "🤠", "😊"];
let randomNum = RNG(emojis.length);
message.channel.send("Henlooo " + message.author.username + " " + emojis[randomNum]);
message.reply("Henlooo " + message.author.username + " " + emojis[randomNum]);
}
function hug(message){
@ -114,7 +114,7 @@ function hug(message){
function mood(message){
var responses = ["Not bad, how yee?", "MOOdy", "A bit sad 😢", "Good, how yee?", "I'm fine, how yee?"];
let randomNum = RNG(responses.length);
message.channel.send(responses[randomNum]);
message.reply(responses[randomNum]);
}
function move(message, splits){