aboutsummaryrefslogtreecommitdiff
path: root/src/commands/leveling
diff options
context:
space:
mode:
authorIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-08-31 17:28:25 -0400
committerIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-08-31 17:28:25 -0400
commit9aa46f79516c0c044742339c59d471b43060d84f (patch)
treeeeed189fe3d7637043b07c2a292aa2896a175476 /src/commands/leveling
parentbada2976eed34a2530bc09683d2de17c71c744a8 (diff)
downloadtanzanite-9aa46f79516c0c044742339c59d471b43060d84f.tar.gz
tanzanite-9aa46f79516c0c044742339c59d471b43060d84f.tar.bz2
tanzanite-9aa46f79516c0c044742339c59d471b43060d84f.zip
bug fixes etc
Diffstat (limited to 'src/commands/leveling')
-rw-r--r--src/commands/leveling/leaderboard.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/leveling/leaderboard.ts b/src/commands/leveling/leaderboard.ts
index b8838b7..d29c15e 100644
--- a/src/commands/leveling/leaderboard.ts
+++ b/src/commands/leveling/leaderboard.ts
@@ -47,6 +47,6 @@ export default class LeaderboardCommand extends BushCommand {
const embeds = chunked.map((c) =>
new MessageEmbed().setTitle(`${message.guild!.name}'s Leaderboard`).setDescription(c.join('\n'))
);
- return await util.buttonPaginate(message, embeds, null, true, args?.page ?? undefined);
+ return await util.buttonPaginate(message, embeds, undefined, true, args?.page ?? undefined);
}
}