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 (17 loc) 582 B
'use strict'; const Action = require('./Action'); const { Events } = require('../../util/Constants'); class GuildStickerUpdateAction extends Action { handle(current, data) { const old = current._update(data); /** * Emitted whenever a custom sticker is updated in a guild. * @event Client#stickerUpdate * @param {Sticker} oldSticker The old sticker * @param {Sticker} newSticker The new sticker */ this.client.emit(Events.GUILD_STICKER_UPDATE, old, current); return { sticker: current }; } } module.exports = GuildStickerUpdateAction;