UNPKG

discord.js-selfbot-v13-proxy

Version:

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

21 lines (16 loc) 895 B
'use strict'; const { Events } = require('../../../util/Constants'); module.exports = (client, { d: data }) => { const commandManager = data.guild_id ? client.guilds.cache.get(data.guild_id)?.commands : client.application.commands; if (!commandManager) return; const oldCommand = commandManager.cache.get(data.id)?._clone() ?? null; const newCommand = commandManager._add(data, data.application_id === client.application.id); /** * Emitted when a guild application command is updated. * @event Client#applicationCommandUpdate * @param {?ApplicationCommand} oldCommand The command before the update * @param {ApplicationCommand} newCommand The command after the update * @deprecated See {@link https://github.com/discord/discord-api-docs/issues/3690 this issue} for more information. */ client.emit(Events.APPLICATION_COMMAND_UPDATE, oldCommand, newCommand); };