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);
}

View File

@@ -356,7 +356,7 @@
"hangman_running": "Hangman game already running on this channel.",
"hangman_types": "List of \"{0}hangman\" term types:",
"leaderboard": "Leaderboard",
"picked": "picked {0}",
"picked": "{1} picked {0}",
"planted": "{0} planted {1}",
"trivia_already_running": "Trivia game is already running on this server.",
"trivia_game": "Trivia Game",