fix: .pick command will now show the name of the user who picked the currency

This commit is contained in:
Kwoth
2024-05-18 23:28:55 +00:00
parent a6010716e8
commit d45c39a5fe
2 changed files with 2 additions and 2 deletions

View File

@@ -27,7 +27,7 @@ public partial class Gambling
if (picked > 0)
{
var msg = await Response().NoReply().Confirm(strs.picked(N(picked))).SendAsync();
var msg = await Response().NoReply().Confirm(strs.picked(N(picked), ctx.User)).SendAsync();
msg.DeleteAfter(10);
}