mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-05-10 12:25:02 +00:00
ran npm run format
This commit is contained in:
parent
b785efe490
commit
c532ab06fb
8 changed files with 56 additions and 24 deletions
|
@ -770,7 +770,7 @@ export class UtilityPlugin extends ZeppelinPlugin<TConfigSchema> {
|
|||
responseText += ` in <#${targetChannel.id}>\n${cleanResult.archiveUrl}`;
|
||||
}
|
||||
|
||||
responseMsg = await msg.channel.createMessage(successMessage(`<:zep_check:650361014180904971>`,responseText));
|
||||
responseMsg = await msg.channel.createMessage(successMessage(`<:zep_check:650361014180904971>`, responseText));
|
||||
} else {
|
||||
responseMsg = await msg.channel.createMessage(errorMessage(`Found no messages to clean!`));
|
||||
}
|
||||
|
@ -982,7 +982,10 @@ export class UtilityPlugin extends ZeppelinPlugin<TConfigSchema> {
|
|||
return;
|
||||
}
|
||||
|
||||
this.sendSuccessMessage(msg.channel, `Changed nickname of <@!${args.member.id}> from **${oldNickname}** to **${args.nickname}**`);
|
||||
this.sendSuccessMessage(
|
||||
msg.channel,
|
||||
`Changed nickname of <@!${args.member.id}> from **${oldNickname}** to **${args.nickname}**`,
|
||||
);
|
||||
}
|
||||
|
||||
@d.command("server", "", {
|
||||
|
@ -1234,7 +1237,10 @@ export class UtilityPlugin extends ZeppelinPlugin<TConfigSchema> {
|
|||
newChannel: stripObjectToScalars(channel),
|
||||
});
|
||||
|
||||
this.sendSuccessMessage(msg.channel, `**${args.member.user.username}#${args.member.user.discriminator}** moved to **${channel.name}**`);
|
||||
this.sendSuccessMessage(
|
||||
msg.channel,
|
||||
`**${args.member.user.username}#${args.member.user.discriminator}** moved to **${channel.name}**`,
|
||||
);
|
||||
}
|
||||
|
||||
@d.command("help", "<command:string$>", {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue