Skip to content

Commit

Permalink
feat(lockdown): Update messages
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco (Valandur) committed Dec 1, 2019
1 parent 8c8d286 commit efa89f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/moderation/commands/mod/lockdown.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export default class extends Command {
);
await this.client.scheduler.removeScheduledAction(guild.id, scheduledUnlockAction.id);

await this.sendReply(message, t('cmd.lockdown.channelUnlocked'));
await this.sendReply(message, t('cmd.lockdown.channelUnlocked', { channel: `<#${channel.id}>` }));

return;
}
Expand Down Expand Up @@ -120,6 +120,6 @@ export default class extends Command {
'Channel lockdown'
);

await this.sendReply(message, t('cmd.lockdown.channelLockedDown'));
await this.sendReply(message, t('cmd.lockdown.channelLockedDown', { channel: `<#${channel.id}>` }));
}
}

0 comments on commit efa89f1

Please sign in to comment.