forked from Supositware/Haha-Yes
Show owner command to the owner ( couldn't find a more elegant way to do it )
This commit is contained in:
parent
dc248cdb57
commit
c9a2cd520c
1 changed files with 21 additions and 8 deletions
|
@ -76,14 +76,27 @@ class HelpCommand extends Command {
|
|||
.setFooter(`All the available prefix: ${prefix.join(' | ')}`);
|
||||
|
||||
for (const category of this.handler.categories.values()) {
|
||||
const title = {
|
||||
general: '📝\u2000General',
|
||||
fun: '🎉\u2000Fun',
|
||||
minigame: '🕹\u2000Minigames (WIP)',
|
||||
images: '🖼\u2000Images',
|
||||
utility: '🔩\u2000Utility',
|
||||
admin: '⚡\u2000Admin',
|
||||
}[category.id];
|
||||
let title;
|
||||
if (message.author.id == this.client.ownerID) {
|
||||
title = {
|
||||
general: '📝\u2000General',
|
||||
fun: '🎉\u2000Fun',
|
||||
minigame: '🕹\u2000Minigames (WIP)',
|
||||
images: '🖼\u2000Images',
|
||||
utility: '🔩\u2000Utility',
|
||||
admin: '⚡\u2000Admin',
|
||||
owner: '🛠️\u2000Owner',
|
||||
}[category.id];
|
||||
} else {
|
||||
title = {
|
||||
general: '📝\u2000General',
|
||||
fun: '🎉\u2000Fun',
|
||||
minigame: '🕹\u2000Minigames (WIP)',
|
||||
images: '🖼\u2000Images',
|
||||
utility: '🔩\u2000Utility',
|
||||
admin: '⚡\u2000Admin',
|
||||
}[category.id];
|
||||
}
|
||||
|
||||
if (title) embed.addField(title, `\`${category.map(cmd => cmd.aliases[0]).join('` `')}\``);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue