mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
fix: .pick command will now show the name of the user who picked the currency
This commit is contained in:
@@ -27,7 +27,7 @@ public partial class Gambling
|
|||||||
|
|
||||||
if (picked > 0)
|
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);
|
msg.DeleteAfter(10);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -356,7 +356,7 @@
|
|||||||
"hangman_running": "Hangman game already running on this channel.",
|
"hangman_running": "Hangman game already running on this channel.",
|
||||||
"hangman_types": "List of \"{0}hangman\" term types:",
|
"hangman_types": "List of \"{0}hangman\" term types:",
|
||||||
"leaderboard": "Leaderboard",
|
"leaderboard": "Leaderboard",
|
||||||
"picked": "picked {0}",
|
"picked": "{1} picked {0}",
|
||||||
"planted": "{0} planted {1}",
|
"planted": "{0} planted {1}",
|
||||||
"trivia_already_running": "Trivia game is already running on this server.",
|
"trivia_already_running": "Trivia game is already running on this server.",
|
||||||
"trivia_game": "Trivia Game",
|
"trivia_game": "Trivia Game",
|
||||||
|
Reference in New Issue
Block a user