discord.js-selfbot-v13
Version:
An unofficial discord.js fork for creating selfbots
34 lines (24 loc) • 909 B
JavaScript
;
const Action = require('./Action');
const { Events } = require('../../util/Constants');
class MessagePollVoteRemoveAction 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 removes their vote in a poll.
* @event Client#messagePollVoteRemove
* @param {PollAnswer} pollAnswer The answer where the vote was removed
* @param {Snowflake} userId The id of the user that removed their vote
*/
this.client.emit(Events.MESSAGE_POLL_VOTE_REMOVE, answer, data.user_id);
return { poll };
}
}
module.exports = MessagePollVoteRemoveAction;