forked from Supositware/Haha-Yes
This commit is contained in:
parent
c8c9a77a5f
commit
aa59eb6fa6
1 changed files with 5 additions and 11 deletions
16
index.js
16
index.js
|
@ -117,24 +117,18 @@ client.registry
|
|||
|
||||
if (reaction.emoji.name === '🌟' && reaction.count === 4) {
|
||||
const channel = client.channels.find(channel => channel.name === "starboard");
|
||||
try {
|
||||
channel.send(`From the channel: **${messageChannel}**\n${messageAuthor}\n${messageContent}\n${messageAttachments}`)
|
||||
}
|
||||
catch {
|
||||
console.error('There is no starboard')
|
||||
}
|
||||
.catch
|
||||
console.error('There is no starboard')
|
||||
}
|
||||
|
||||
if (reaction.emoji.name === '✡' && reaction.count === 4) {
|
||||
const channel = client.channels.find(channel => channel.name === "shameboard");
|
||||
try {
|
||||
channel.send(`From the channel: **${messageChannel}**\n${messageAuthor}\n${messageContent}\n${messageAttachments}`)
|
||||
}
|
||||
catch {
|
||||
console.error('There is no shameboard')
|
||||
}
|
||||
.catch
|
||||
console.error('There is no shameboard')
|
||||
}
|
||||
})
|
||||
})
|
||||
|
||||
client.on('error', console.error);
|
||||
process.on('unhandledRejection', error => console.error('Uncaught Promise Rejection', error));
|
||||
|
|
Loading…
Reference in a new issue