diff --git a/bot/src/bot/commands/ban.ts b/bot/src/bot/commands/ban.ts index a80c2eb..2a9476d 100644 --- a/bot/src/bot/commands/ban.ts +++ b/bot/src/bot/commands/ban.ts @@ -85,7 +85,7 @@ export default { .catch(e => message.reply(`Failed to ban user: \`${e}\``)); await Promise.all([ - message.reply(`### @${targetName} has been ${Math.random() > 0.8 ? 'ejected' : 'banned'}.\n` + message.reply(`### ${targetName} has been ${Math.random() > 0.8 ? 'ejected' : 'banned'}.\n` + `Infraction ID: \`${infId}\` (**#${userWarnCount}** for this user)`), logModAction('ban', message.serverContext, message.member!, targetUser._id, reason, infraction, `Ban duration: **Permanent**`), ]);