Мелкие исправления

This commit is contained in:
JonnyBro 2022-02-25 01:03:54 +05:00
parent f96f9ba7e8
commit 935a2cf903
2 changed files with 2 additions and 2 deletions

View file

@ -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(() => {});
} }

View file

@ -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;