diff options
Diffstat (limited to 'src/commands/moderation/unmute.ts')
-rw-r--r-- | src/commands/moderation/unmute.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/commands/moderation/unmute.ts b/src/commands/moderation/unmute.ts index 9ac13ce..08497c7 100644 --- a/src/commands/moderation/unmute.ts +++ b/src/commands/moderation/unmute.ts @@ -5,7 +5,6 @@ import { emojis, format, Moderation, - prefix, unmuteResponse, userGuildPermCheck, type ArgType, @@ -84,7 +83,7 @@ export default class UnmuteCommand extends BushCommand { }); const responseMessage = (): string => { - const prefix_ = prefix(message); + const prefix_ = this.client.utils.prefix(message); const victim = format.input(member.user.tag); switch (responseCode) { case unmuteResponse.MISSING_PERMISSIONS: |