3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-18 15:45:03 +00:00

Changed manual unmute case note

This commit is contained in:
roflmaoqwerty 2020-01-25 10:10:30 +11:00
parent 1aa370cc59
commit 9428cb11e6
2 changed files with 1 additions and 2 deletions

View file

@ -902,7 +902,6 @@ export class ModActionsPlugin extends ZeppelinPlugin<TConfigSchema> {
return;
}
// Find the server member to unmute
if (!memberToUnmute) {
const isBanned = await this.isBanned(user.id);
const prefix = this.guildConfig.prefix;

View file

@ -314,7 +314,7 @@ export class MutesPlugin extends ZeppelinPlugin<TConfigSchema> {
noteDetails.push(`Unmuted immediately`);
}
if (!existingMute) {
noteDetails.push(`Removed manual role mute`);
noteDetails.push(`Removed external mute`);
}
const casesPlugin = this.getPlugin<CasesPlugin>("cases");