Using INumber<T> for pretty printing nadeko currency

This commit is contained in:
Kwoth
2023-01-21 01:23:29 +01:00
parent 63a9ae2dac
commit f0ac087fdb
4 changed files with 17 additions and 17 deletions

View File

@@ -29,7 +29,7 @@ public partial class Gambling
if (await _bank.DepositAsync(ctx.User.Id, amount))
{
await ReplyConfirmLocalizedAsync(strs.bank_deposited(N(amount)));
await ReplyConfirmLocalizedAsync(strs.bank_deposited(N(amount.Value)));
}
else
{
@@ -45,7 +45,7 @@ public partial class Gambling
if (await _bank.WithdrawAsync(ctx.User.Id, amount))
{
await ReplyConfirmLocalizedAsync(strs.bank_withdrew(N(amount)));
await ReplyConfirmLocalizedAsync(strs.bank_withdrew(N(amount.Amount)));
}
else
{