diff --git a/src/helpers/message.ts b/src/helpers/message.ts index f6b98bc8d..d9d57e245 100644 --- a/src/helpers/message.ts +++ b/src/helpers/message.ts @@ -267,12 +267,13 @@ export async function removeReactionEmoji( /** Get a list of users that reacted with this emoji. */ export async function getReactions( - message: Message, + channelID: string, + messageID: string, reaction: string, options?: DiscordGetReactionsParams, ) { const users = (await RequestManager.get( - endpoints.CHANNEL_MESSAGE_REACTION(message.channelID, message.id, reaction), + endpoints.CHANNEL_MESSAGE_REACTION(channelID, messageID, reaction), options, )) as UserPayload[];