Skip to content

Commit

Permalink
fix: change emoji order
Browse files Browse the repository at this point in the history
  • Loading branch information
HarshKhandeparkar committed Dec 28, 2020
1 parent bc0ea88 commit 5a772c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export class ReactionMenu {
this.currentPage = startPage;

await this.menuMessage.react(this.controlsEmojis.first);
await this.menuMessage.react(this.controlsEmojis.next);
await this.menuMessage.react(this.controlsEmojis.back);

// Add custom page emojis
for (const page of this.pages) {
Expand All @@ -78,7 +78,7 @@ export class ReactionMenu {
}
// /Add custom page emojis

await this.menuMessage.react(this.controlsEmojis.back);
await this.menuMessage.react(this.controlsEmojis.next);
await this.menuMessage.react(this.controlsEmojis.last);

this.reactionCollector = this.menuMessage.createReactionCollector(
Expand Down

0 comments on commit 5a772c8

Please sign in to comment.