Files
discord.js-selfbot/src/client/actions/ThreadDelete.js

33 lines
878 B
JavaScript
Raw Normal View History

2022-03-19 17:37:45 +07:00
'use strict';
const Action = require('./Action');
const { deletedChannels } = require('../../structures/Channel');
const { deletedMessages } = require('../../structures/Message');
const { Events } = require('../../util/Constants');
2022-03-19 17:37:45 +07:00
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);
}
2022-03-19 17:37:45 +07:00
/**
* Emitted whenever a thread is deleted.
* @event Client#threadDelete
* @param {ThreadChannel} thread The thread that was deleted
*/
client.emit(Events.THREAD_DELETE, thread);
2022-03-19 17:37:45 +07:00
}
return { thread };
}
}
module.exports = ThreadDeleteAction;