UNPKG

discord.js-selfbot-v13-proxy

Version:

A unofficial discord.js-selfbot-v13 fork for creating selfbots with proxy [Based on discord.js v13]

40 lines (33 loc) 1.11 kB
'use strict'; const Action = require('./Action'); const { deletedChannels } = require('../../structures/Channel'); const DMChannel = require('../../structures/DMChannel'); const { deletedMessages } = require('../../structures/Message'); const { Events } = require('../../util/Constants'); class ChannelDeleteAction extends Action { constructor(client) { super(client); this.deleted = new Map(); } handle(data) { const client = this.client; const channel = client.channels.cache.get(data.id); if (channel) { client.channels._remove(channel.id); deletedChannels.add(channel); if (channel.messages && !(channel instanceof DMChannel)) { for (const message of channel.messages.cache.values()) { deletedMessages.add(message); } } /** * Emitted whenever a channel is deleted. * @event Client#channelDelete * @param {DMChannel|GuildChannel} channel The channel that was deleted */ client.emit(Events.CHANNEL_DELETE, channel); } return { channel }; } } module.exports = ChannelDeleteAction;