UNPKG

shadowsb

Version:

A unofficial discord.js fork for creating selfbots [Based on discord.js v13] (discord.js-selfbot-v13) for true version

33 lines (26 loc) 878 B
'use strict'; const Action = require('./Action'); const { deletedChannels } = require('../../structures/Channel'); const { deletedMessages } = require('../../structures/Message'); const { Events } = require('../../util/Constants'); class ThreadDeleteAction extends Action { handle(data) { const client = this.client; const thread = client.channels.cache.get(data.id); if (thread) { client.channels._remove(thread.id); deletedChannels.add(thread); for (const message of thread.messages.cache.values()) { deletedMessages.add(message); } /** * Emitted whenever a thread is deleted. * @event Client#threadDelete * @param {ThreadChannel} thread The thread that was deleted */ client.emit(Events.THREAD_DELETE, thread); } return { thread }; } } module.exports = ThreadDeleteAction;