diff --git a/src/NadekoBot/Modules/Searches/Crypto/CryptoCommands.cs b/src/NadekoBot/Modules/Searches/Crypto/CryptoCommands.cs index 1cccd9de2..74729876f 100644 --- a/src/NadekoBot/Modules/Searches/Crypto/CryptoCommands.cs +++ b/src/NadekoBot/Modules/Searches/Crypto/CryptoCommands.cs @@ -197,6 +197,9 @@ public partial class Searches if (--page < 0) return; + if (page > 25) + page = 25; + await Response() .Paginated() .PageItems(async (page) => @@ -226,6 +229,7 @@ public partial class Searches return embed; }) + .CurrentPage(page) .AddFooter(false) .SendAsync(); }