aboutsummaryrefslogtreecommitdiff
path: root/src/commands/moulberry-bush/capePerms.ts
diff options
context:
space:
mode:
authorTymanWasTaken <32660892+tymanwastaken@users.noreply.github.com>2021-05-28 22:08:28 -0600
committerTymanWasTaken <32660892+tymanwastaken@users.noreply.github.com>2021-05-28 22:08:28 -0600
commitee665e568f244e1c465748718691404b7bf6feb0 (patch)
tree847333085377020969ce13cd6652d8894c503426 /src/commands/moulberry-bush/capePerms.ts
parent35d8cbda559c479c66800d39535df02c807dc33a (diff)
parent57de6733b62c83ff197f9236f71545d8ef1e1103 (diff)
downloadtanzanite-ee665e568f244e1c465748718691404b7bf6feb0.tar.gz
tanzanite-ee665e568f244e1c465748718691404b7bf6feb0.tar.bz2
tanzanite-ee665e568f244e1c465748718691404b7bf6feb0.zip
Merge branch 'rewrite' of github.com:NotEnoughUpdates/bush-bot into rewrite
Diffstat (limited to 'src/commands/moulberry-bush/capePerms.ts')
-rw-r--r--src/commands/moulberry-bush/capePerms.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/commands/moulberry-bush/capePerms.ts b/src/commands/moulberry-bush/capePerms.ts
index 79f9d6b..a0edf8c 100644
--- a/src/commands/moulberry-bush/capePerms.ts
+++ b/src/commands/moulberry-bush/capePerms.ts
@@ -95,7 +95,10 @@ export default class CapePermissionsCommand extends BushCommand {
const foundUser = capeperms.perms.find((u) => u._id === uuid);
if (foundUser == null) return `<:error:837123021016924261> \`${user}\` does not appear to have any capes.`;
const userPerm: string[] = foundUser.perms;
- const embed = this.client.util.createEmbed(this.client.util.colors.default).setTitle(`${user}'s Capes`).setDescription(userPerm.join('\n'));
+ const embed = this.client.util
+ .createEmbed(this.client.util.colors.default)
+ .setTitle(`${user}'s Capes`)
+ .setDescription(userPerm.join('\n'));
return embed;
} else {
return `<:error:837123021016924261> There was an error finding cape perms for ${user}.`;