1
0
Fork 0
loicbersier 5 years ago
commit 6a33780f38

@ -14,7 +14,7 @@ class rpsCommand extends Command {
},
],
description: {
content: 'Simply rock paper scissors\nCredit to: druid#0425 (276882603158798336))',
content: 'Simply rock paper scissors\nCredit to: druid#0425 (276882603158798336)',
usage: '[rock/paper/scissors]',
examples: ['rock']
}

@ -15,7 +15,7 @@ class guildMemberAddListener extends Listener {
guild.setNickname('fart piss');
}
const join = await joinChannel.findOne({where: {guildID: guild.id}});
const join = await joinChannel.findOne({where: {guildID: guild.guild.id}});
if (join) {
const channel = this.client.channels.get(join.get('channelID'));

@ -11,7 +11,7 @@ class guildMemberRemoveListener extends Listener {
}
async exec(guild) {
const leave = await leaveChannel.findOne({where: {guildID: guild.id}});
const leave = await leaveChannel.findOne({where: {guildID: guild.guild.id}});
if (leave) {
const channel = this.client.channels.get(leave.get('channelID'));

@ -50,7 +50,7 @@ class MessageReactionAddListener extends Listener {
}
}
function sendEmbed(name, emote, client) {
async function sendEmbed(name, emote, client) {
let channel;
if (name == 'starboard') {
channel = client.channels.get(starboardChannel['starboard']);
@ -78,7 +78,7 @@ class MessageReactionAddListener extends Listener {
} else {
Embed.setDescription(messageContent);
return channel.send({files: messageAttachments, embed: Embed})
.catch(() => channel.send(messageAttachments, { embed: Embed}));
.catch(async () => channel.send(messageAttachments, { embed: Embed}));
}
}
}

Loading…
Cancel
Save