mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 13:14:58 +05:00
Мелкие исправления
This commit is contained in:
parent
f96f9ba7e8
commit
935a2cf903
2 changed files with 2 additions and 2 deletions
|
@ -21,7 +21,7 @@ class Lmg extends Command {
|
||||||
if (!question) return message.error("fun/lmg:MISSING");
|
if (!question) return message.error("fun/lmg:MISSING");
|
||||||
const encodedQuestion = question.replace(/[' '_]/g, "+");
|
const encodedQuestion = question.replace(/[' '_]/g, "+");
|
||||||
await message.reply({
|
await message.reply({
|
||||||
content: `https://google.gik-team.com/?q=${encodedQuestion}`
|
content: `<https://google.gik-team.com/?q=${encodedQuestion}>`
|
||||||
});
|
});
|
||||||
message.delete().catch(() => {});
|
message.delete().catch(() => {});
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,7 +27,7 @@ class Permissions extends Command {
|
||||||
allowed: 0
|
allowed: 0
|
||||||
};
|
};
|
||||||
|
|
||||||
let text = `${message.translate("general/permissions:TITLE", { user: member.user.username, channel: message.channel.name })}\n\n`;
|
let text = `**${message.translate("general/permissions:TITLE", { user: member.user.username, channel: message.channel.name })}**\n`;
|
||||||
permissions.forEach((perm) => {
|
permissions.forEach((perm) => {
|
||||||
if (perm === "REQUEST_TO_SPEAK") return;
|
if (perm === "REQUEST_TO_SPEAK") return;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue