fix: Blackjack and .pick command responses will no longer reply as the original message will always be deleted

This commit is contained in:
Kwoth
2024-05-13 10:48:05 +00:00
parent 876d63fd8b
commit 35fd5c415d
2 changed files with 4 additions and 4 deletions

View File

@@ -27,7 +27,7 @@ public partial class Gambling
if (picked > 0)
{
var msg = await Response().Confirm(strs.picked(N(picked))).SendAsync();
var msg = await Response().NoReply().Confirm(strs.picked(N(picked))).SendAsync();
msg.DeleteAfter(10);
}
@@ -92,7 +92,7 @@ public partial class Gambling
{
if (--page < 0)
return Task.CompletedTask;
var enabledIn = _service.GetAllGeneratingChannels();
return Response()