mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 05:04:58 +05:00
Да блять
This commit is contained in:
parent
daf475054b
commit
f52ddc6e25
1 changed files with 2 additions and 2 deletions
|
@ -38,8 +38,8 @@ Message.prototype.replyT = function (key, args, options = {}) {
|
|||
let string = this.translate(key, args, this.guild ? this.guild.data.language : "ru-RU");
|
||||
if (options.prefixEmoji) string = `${this.client.customEmojis[options.prefixEmoji]} | ${string}`;
|
||||
|
||||
if (options.edit) return this.edit({ content: string, allowedMentions: { repliedUser: options.mention || true } });
|
||||
else return this.reply({ content: string, allowedMentions: { repliedUser: options.mention || true } });
|
||||
if (options.edit) return this.edit({ content: string, allowedMentions: { repliedUser: options.mention ? true : false } });
|
||||
else return this.reply({ content: string, allowedMentions: { repliedUser: options.mention ? true : false } });
|
||||
};
|
||||
|
||||
Message.prototype.error = function (key, args, options = {}) {
|
||||
|
|
Loading…
Reference in a new issue