add: Added .honeypot command

fix: Fixed .betdraw not respecting max bet limit
This commit is contained in:
Kwoth
2024-06-27 04:27:04 +00:00
parent 49d557caec
commit ef471c32bb
20 changed files with 10898 additions and 31 deletions

View File

@@ -12,8 +12,8 @@ public partial class ResponseBuilder
private readonly DiscordSocketClient _client;
private int currentPage;
private NadekoButtonInteractionHandler left;
private NadekoButtonInteractionHandler right;
private NadekoButtonInteractionHandler? left;
private NadekoButtonInteractionHandler? right;
private NadekoInteractionBase? extra;
public PaginationSender(
@@ -120,8 +120,8 @@ public partial class ResponseBuilder
if (_paginationBuilder.AddPaginatedFooter)
toSend.AddPaginatedFooter(currentPage, lastPage);
left.SetCompleted();
right.SetCompleted();
left?.SetCompleted();
right?.SetCompleted();
extra?.SetCompleted();
(left, extra, right) = (await GetInteractions());