mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-16 15:57:54 +02:00
Remove starboard functionality
This commit is contained in:
@@ -10,8 +10,6 @@ const client = new CommandoClient({
|
||||
disabledEvents: ['TYPING_START']
|
||||
});
|
||||
const activities = require('./assets/json/activity');
|
||||
const { MessageEmbed } = require('discord.js');
|
||||
const starred = new Map();
|
||||
|
||||
client.registry
|
||||
.registerDefaultTypes()
|
||||
@@ -60,53 +58,6 @@ client.on('warn', err => console.warn('[WARNING]', err));
|
||||
|
||||
client.on('commandError', (command, err) => console.error('[COMMAND ERROR]', command.name, err));
|
||||
|
||||
client.on('messageReactionAdd', async (reaction, user) => {
|
||||
if (reaction.emoji.name !== '⭐') return;
|
||||
const msg = reaction.message;
|
||||
if (msg.author.id === user.id) {
|
||||
if (msg.channel.permissionsFor(client.user).has('MANAGE_MESSAGES')) await reaction.remove(user);
|
||||
await msg.reply('You cannot star your own messages, idiot.');
|
||||
return;
|
||||
}
|
||||
const starboard = msg.guild.channels.find('name', 'starboard');
|
||||
if (!starboard) return;
|
||||
if (!starboard.permissionsFor(client.user).has(['SEND_MESSAGES', 'EMBED_LINKS'])) return;
|
||||
const embed = new MessageEmbed()
|
||||
.setAuthor(msg.author.tag, msg.author.displayAvatarURL())
|
||||
.setDescription(msg.content)
|
||||
.setImage(msg.attachments.size ? msg.attachments.first().url : null)
|
||||
.setColor(0xFFFF00)
|
||||
.setTimestamp()
|
||||
.setFooter(`⭐ ${reaction.count}`);
|
||||
let starMsg;
|
||||
if (starred.has(msg.id)) starMsg = await starred.get(msg.id).edit(`${reaction.count} ⭐ ${msg.channel}`, { embed });
|
||||
else starMsg = await starboard.send(`${reaction.count} ⭐ ${msg.channel}`, { embed });
|
||||
starred.set(msg.id, starMsg);
|
||||
});
|
||||
|
||||
client.on('messageReactionRemove', async reaction => {
|
||||
if (reaction.emoji.name !== '⭐') return;
|
||||
const msg = reaction.message;
|
||||
if (!starred.has(msg.id)) return;
|
||||
const starboard = msg.guild.channels.find('name', 'starboard');
|
||||
if (!starboard) return;
|
||||
if (!starboard.permissionsFor(client.user).has(['SEND_MESSAGES', 'EMBED_LINKS', 'MANAGE_MESSAGES'])) return;
|
||||
const embed = new MessageEmbed()
|
||||
.setAuthor(msg.author.tag, msg.author.displayAvatarURL())
|
||||
.setDescription(msg.content)
|
||||
.setImage(msg.attachments.size ? msg.attachments.first().url : null)
|
||||
.setColor(0xFFFF00)
|
||||
.setTimestamp()
|
||||
.setFooter(`⭐ ${reaction.count}`);
|
||||
if (reaction.count > 0) {
|
||||
const starMsg = await starred.get(msg.id).edit(`${reaction.count} ⭐ ${msg.channel}`, { embed });
|
||||
starred.set(msg.id, starMsg);
|
||||
} else {
|
||||
await starred.get(msg.id).delete();
|
||||
starred.delete(msg.id);
|
||||
}
|
||||
});
|
||||
|
||||
client.login(XIAO_TOKEN);
|
||||
|
||||
process.on('unhandledRejection', err => {
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "xiao",
|
||||
"version": "63.0.0",
|
||||
"version": "64.0.0",
|
||||
"description": "Your personal server companion.",
|
||||
"main": "Xiao.js",
|
||||
"scripts": {
|
||||
|
||||
Reference in New Issue
Block a user