Update main.js
This commit is contained in:
parent
eb595500e0
commit
590133906e
1 changed files with 3 additions and 3 deletions
6
main.js
6
main.js
|
@ -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){
|
||||
|
|
Loading…
Reference in a new issue