fix(arabot): fix typo that did not include mentor coordinator in error text

This commit is contained in:
Anthony 2022-07-29 03:54:20 +01:00
parent fe225ab6f0
commit 0bab772b09

View File

@ -41,7 +41,7 @@ export class MentorCoordinatorOnlyPrecondition extends AllFlowsPrecondition {
private async checkMentorCoordinator(user: GuildMember) {
return user.roles.cache.has(IDs.roles.staff.mentorCoordinator)
? this.ok()
: this.error({ message: 'Only coordinators can run this command!' });
: this.error({ message: 'Only mentor coordinators can run this command!' });
}
}