fix: Fixed a blackjack string usage

This commit is contained in:
Kwoth
2024-05-13 06:32:46 +00:00
parent 263ef4b47f
commit 876d63fd8b

View File

@@ -50,12 +50,12 @@ public partial class Gambling
bj.GameEnded += Bj_GameEnded;
bj.Start();
await Response().Confirm(strs.bj_created).SendAsync();
await Response().Confirm(strs.bj_created(ctx.User.ToString())).SendAsync();
}
else
{
if (await bj.Join(ctx.User, amount))
await Response().Confirm(strs.bj_joined).SendAsync();
await Response().Confirm(strs.bj_joined(ctx.User.ToString())).SendAsync();
else
{
Log.Information("{User} can't join a blackjack game as it's in {BlackjackState} state already",