diff options
Diffstat (limited to 'src/commands/moderation/removeReactionEmoji.ts')
-rw-r--r-- | src/commands/moderation/removeReactionEmoji.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/commands/moderation/removeReactionEmoji.ts b/src/commands/moderation/removeReactionEmoji.ts index b0079c6..cb1be04 100644 --- a/src/commands/moderation/removeReactionEmoji.ts +++ b/src/commands/moderation/removeReactionEmoji.ts @@ -49,13 +49,13 @@ export default class RemoveReactionEmojiCommand extends BushCommand { .catch(() => {}); if (success) { return await message.util.reply( - `${this.client.util.emojis.success} Removed all reactions of \`${ - id ? emojiID : emoji - }\` from the message with the id of \`${messageToRemoveFrom.id}\`.` + `${util.emojis.success} Removed all reactions of \`${id ? emojiID : emoji}\` from the message with the id of \`${ + messageToRemoveFrom.id + }\`.` ); } else { return await message.util.reply( - `${this.client.util.emojis.error} There was an error removing all reactions of \`${ + `${util.emojis.error} There was an error removing all reactions of \`${ id ? emojiID : emoji }\` from the message with the id of \`${messageToRemoveFrom.id}\`.` ); |