discord.js-selfbot-v13
Version:
A unofficial discord.js fork for creating selfbots [Based on discord.js v13]
34 lines (24 loc) • 862 B
JavaScript
;
const Action = require('./Action');
const { Events } = require('../../util/Constants');
class MessagePollVoteAddAction extends Action {
handle(data) {
const channel = this.getChannel(data);
if (!channel?.isText()) return false;
const message = this.getMessage(data, channel);
if (!message) return false;
const { poll } = message;
const answer = poll?.answers.get(data.answer_id);
if (!answer) return false;
answer.voteCount++;
/**
* Emitted whenever a user votes in a poll.
* @event Client#messagePollVoteAdd
* @param {PollAnswer} pollAnswer The answer that was voted on
* @param {Snowflake} userId The id of the user that voted
*/
this.client.emit(Events.MESSAGE_POLL_VOTE_ADD, answer, data.user_id);
return { poll };
}
}
module.exports = MessagePollVoteAddAction;