Skip to content

Commit

Permalink
[Enhancement] various message fixes for embeds
Browse files Browse the repository at this point in the history
  • Loading branch information
naseif committed Sep 2, 2021
1 parent c1bdff0 commit 69cfb44
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion commands/admin/addrole.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ module.exports = {
embeds: [
embedMessage(
"#9dcc37",
`❌ I can not add this role to the user since its above me!`
`❌ I can not add this role to the user!\nEtiher its above me or I have no right to assign it to other users!`
),
],
});
Expand Down
8 changes: 4 additions & 4 deletions commands/misc/help.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ module.exports = {
function printHelpByCollection(collection) {
const commands = collection.map(
(command) =>
"```" +
"`" +
`/${command.data.name}` +
"```" +
"- " +
`**${command.data.description}**`
"`" +
" - " +
`${command.data.description}`
);
return commands;
}
Expand Down
4 changes: 2 additions & 2 deletions commands/misc/nickname.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ module.exports = {
embeds: [
embedMessage(
"#9dcc37",
`You do not have permission to change ${user.toString()} nickname!`
`You do not have permission to change ${user.toString()} nickname!`
),
],
});
Expand Down Expand Up @@ -76,7 +76,7 @@ module.exports = {
embeds: [
embedMessage(
"#9dcc37",
` ❌ I do not have permission to change your Nickname, maybe your role is higher than mine or perhaps you are the owner ?`
` ❌ I do not have permission to change your nickname!\n maybe your role is higher than mine or perhaps you are the owner ?`
),
],
});
Expand Down

0 comments on commit 69cfb44

Please sign in to comment.