UNPKG

discord.js-selfbot-v13-proxy

Version:

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

17 lines (14 loc) 562 B
'use strict'; const { Events } = require('../../../util/Constants'); module.exports = (client, packet) => { const { old, updated } = client.actions.ChannelUpdate.handle(packet.d); if (old && updated) { /** * Emitted whenever a thread is updated - e.g. name change, archive state change, locked state change. * @event Client#threadUpdate * @param {ThreadChannel} oldThread The thread before the update * @param {ThreadChannel} newThread The thread after the update */ client.emit(Events.THREAD_UPDATE, old, updated); } };