diff options
author | github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | 2021-11-28 14:28:54 +0000 |
---|---|---|
committer | github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | 2021-11-28 14:28:54 +0000 |
commit | abcafe76284d190e41941571999e280b402bd8e1 (patch) | |
tree | 90706041cc966f69495c526072ee044f3b1655fd /src/commands/moderation | |
parent | 453683b57b8ff013ff25e2aaa4aa1d2e047edcb7 (diff) | |
download | tanzanite-abcafe76284d190e41941571999e280b402bd8e1.tar.gz tanzanite-abcafe76284d190e41941571999e280b402bd8e1.tar.bz2 tanzanite-abcafe76284d190e41941571999e280b402bd8e1.zip |
Automatically format code
Diffstat (limited to 'src/commands/moderation')
-rw-r--r-- | src/commands/moderation/mute.ts | 2 | ||||
-rw-r--r-- | src/commands/moderation/purge.ts | 2 | ||||
-rw-r--r-- | src/commands/moderation/removeReactionEmoji.ts | 9 |
3 files changed, 5 insertions, 8 deletions
diff --git a/src/commands/moderation/mute.ts b/src/commands/moderation/mute.ts index 0584d97..a18c04e 100644 --- a/src/commands/moderation/mute.ts +++ b/src/commands/moderation/mute.ts @@ -25,7 +25,7 @@ export default class MuteCommand extends BushCommand { prompt: 'Why should this user be muted and for how long?', retry: '{error} Choose a valid mute reason and duration.', optional: true, - slashType:'STRING' + slashType: 'STRING' }, { id: 'force', diff --git a/src/commands/moderation/purge.ts b/src/commands/moderation/purge.ts index 6bc62de..21b9a3a 100644 --- a/src/commands/moderation/purge.ts +++ b/src/commands/moderation/purge.ts @@ -47,7 +47,7 @@ export default class PurgeCommand extends BushCommand { }); } - public override async exec(message: BushMessage, args: { amount: number; bot: boolean, user: BushUser }) { + public override async exec(message: BushMessage, args: { amount: number; bot: boolean; user: BushUser }) { if (message.channel.type === 'DM') return message.util.reply(`${util.emojis.error} You cannot run this command in dms.`); if (args.amount > 100 || args.amount < 1) return message.util.reply(`${util.emojis.error} `); diff --git a/src/commands/moderation/removeReactionEmoji.ts b/src/commands/moderation/removeReactionEmoji.ts index e847aba..d543f60 100644 --- a/src/commands/moderation/removeReactionEmoji.ts +++ b/src/commands/moderation/removeReactionEmoji.ts @@ -22,7 +22,7 @@ export default class RemoveReactionEmojiCommand extends BushCommand { id: 'emoji', description: 'The emoji to remove all the reactions of from a message.', customType: util.arg.union('emoji', 'snowflake'), - readableType:'emoji|snowflake', + readableType: 'emoji|snowflake', match: 'restContent', prompt: 'What emoji would you like to remove?', retry: '{error} Please pick a valid emoji.', @@ -36,11 +36,8 @@ export default class RemoveReactionEmojiCommand extends BushCommand { }); } - public override async exec( - message: BushMessage, - args: { message: BushMessage|Snowflake; emoji: Emoji | Snowflake } - ) { - const resolvedMessage = args.message instanceof Message ? args.message : await message.channel.messages.fetch(args.message ) + public override async exec(message: BushMessage, args: { message: BushMessage | Snowflake; emoji: Emoji | Snowflake }) { + const resolvedMessage = args.message instanceof Message ? args.message : await message.channel.messages.fetch(args.message); const id = !(['string'] as const).includes(typeof args.emoji); const emojiID = !id ? `${args.emoji}` : (args.emoji as Emoji).id; |