mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
fix: Blackjack and .pick command responses will no longer reply as the original message will always be deleted
This commit is contained in:
@@ -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()
|
||||
|
Reference in New Issue
Block a user