UNPKG

discord.js-selfbot-v13-proxy

Version:

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

12 lines (11 loc) 331 B
'use strict'; const Call = require('../../../structures/Call'); const { Events } = require('../../../util/Constants'); module.exports = (client, packet) => { /** * Emitted whenever update a call * @event Client#callUpdate * @param {Call} call Call */ client.emit(Events.CALL_UPDATE, new Call(client, packet.d)); };