This commit is contained in:
plane000
2018-05-22 20:23:08 +01:00
parent 825e1611f5
commit 41742456be
3 changed files with 8 additions and 2 deletions

View File

@@ -89,3 +89,9 @@ module.exports.undo = function (message, msg, args, discordclient) {
})
.catch();
};
module.exports.hug = function(message, msg, args, discordclient) {
var em = new Discord.RichEmbed();
em.setImage('https://cdn.discordapp.com/attachments/345580737149403146/442232811605458957/cat-instantly-hugs-plush-toy.gif');
messgae.channel.send(em);
}

View File

@@ -216,7 +216,6 @@ module.exports.vote = async function(message, msg, args, discordclient) {
polls[message.guild.id] = poll;
message.channel.send(`${message.author} voted for ${option}!`);
//console.log(polls);
} else {
message.channel.send(':no_entry_sign: \`You have allready voted\`');
}