discord.js-selfbot-v13
Version:
An unofficial discord.js fork for creating selfbots
20 lines (19 loc) • 693 B
JavaScript
;
const { Events, Status } = require('../../../util/Constants');
module.exports = (client, packet, shard) => {
const channel = client.channels.cache.get(packet.d.channel_id);
if (channel) {
if (!channel._recipients) channel._recipients = [];
channel._recipients.push(packet.d.user);
const user = client.users._add(packet.d.user);
if (shard.status == Status.READY) {
/**
* Emitted whenever a recipient is added from a group DM.
* @event Client#channelRecipientAdd
* @param {GroupDMChannel} channel Group DM channel
* @param {User} user User
*/
client.emit(Events.CHANNEL_RECIPIENT_ADD, channel, user);
}
}
};