Skip to content

Commit

Permalink
remove incorrect space
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianVennen committed May 30, 2023
1 parent 588f2a8 commit 22eb833
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "modbot",
"version": "3.3.7",
"version": "3.3.8",
"description": "Discord Bot for the Aternos Discord server",
"main": "index.js",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion src/commands/settings/punishments/SetPunishmentsCommand.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export default class SetPunishmentsCommand extends SubCommand {
duration
}));
await interaction.reply(new EmbedWrapper()
.setDescription(`Set punishment for ${count} ${count === 1 ? 'strike': 'strikes'} to ${action} ${duration ? `for ${formatTime(duration)}` : ''}.`)
.setDescription(`Set punishment for ${count} ${count === 1 ? 'strike': 'strikes'} to ${action}${duration ? ` for ${formatTime(duration)}` : ''}.`)
.setColor(colors.RED)
.toMessage());
}
Expand Down

0 comments on commit 22eb833

Please sign in to comment.