mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-24 22:24:58 +05:00
Фикс
This commit is contained in:
parent
744b001f56
commit
8ddeace757
1 changed files with 2 additions and 2 deletions
|
@ -54,8 +54,8 @@ class Transactions extends Command {
|
||||||
embeds: [embed]
|
embeds: [embed]
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
embed.addField(message.translate("economy/transactions:T_GOT"), sortedTransactions[0].join("\n"), true);
|
if (sortedTransactions[0].length > 0) embed.addField(message.translate("economy/transactions:T_GOT"), sortedTransactions[0].join("\n"), true);
|
||||||
embed.addField(message.translate("economy/transactions:T_SEND"), sortedTransactions[1].join("\n"), true);
|
if (sortedTransactions[1].length > 0) embed.addField(message.translate("economy/transactions:T_SEND"), sortedTransactions[1].join("\n"), true);
|
||||||
}
|
}
|
||||||
message.channel.send({
|
message.channel.send({
|
||||||
embeds: [embed]
|
embeds: [embed]
|
||||||
|
|
Loading…
Reference in a new issue