From d7d13d2fc4f99344fe4b54a2c0ff08a4c54f73b2 Mon Sep 17 00:00:00 2001 From: JonnyBro Date: Fri, 31 Dec 2021 11:54:31 +0500 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D0=B5=20slots=20=D0=BF=D0=BE=D0=B4=20=D0=B8=D0=B7?= =?UTF-8?q?=D0=BC=D0=B5=D0=BD=D0=B5=D0=BD=D0=B8=D0=B5=20=D1=81=D0=BA=D0=BB?= =?UTF-8?q?=D0=BE=D0=BD=D0=B5=D0=BD=D0=B8=D0=B9=20=D1=81=D0=BB=D0=BE=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- commands/Economy/slots.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/Economy/slots.js b/commands/Economy/slots.js index 221215c7..18c9217f 100644 --- a/commands/Economy/slots.js +++ b/commands/Economy/slots.js @@ -107,8 +107,8 @@ class Slots extends Command { tmsg.edit(msg); const credits = getCredits(amount, false); message.channel.send(message.translate("economy/slots:VICTORY", { - money: amount, - won: credits, + money: `${amount} ${message.getNoun(amount, message.translate("misc:NOUNS:CREDIT:1"), message.translate("misc:NOUNS:CREDIT:2"), message.translate("misc:NOUNS:CREDIT:5"))}`, + won: `${credits} ${message.getNoun(credits, message.translate("misc:NOUNS:CREDIT:1"), message.translate("misc:NOUNS:CREDIT:2"), message.translate("misc:NOUNS:CREDIT:5"))}`, username: message.author.username })); const toAdd = credits - amount;