diff --git a/package.json b/package.json index 5da79fcb8..a431a91c3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "modbot", - "version": "3.0.0", + "version": "3.0.1", "description": "Discord Bot for the Aternos Discord server", "main": "index.js", "type": "module", diff --git a/src/commands/settings/auto-response/AddAutoResponseCommand.js b/src/commands/settings/auto-response/AddAutoResponseCommand.js index 58f6e97d5..23e62d3ae 100644 --- a/src/commands/settings/auto-response/AddAutoResponseCommand.js +++ b/src/commands/settings/auto-response/AddAutoResponseCommand.js @@ -43,7 +43,7 @@ export default class AddAutoResponseCommand extends SubCommand { const confirmation = new Confirmation({global, type}, timeAfter('1 hour')); await interaction.showModal(new ModalBuilder() - .setTitle(`Create new Auto-response of type ${type}` + (global ? '(all channels)' : '')) + .setTitle(`Create new Auto-response of type ${type}`) .setCustomId(`auto-response:add:${await confirmation.save()}`) .addComponents( /** @type {*} */ diff --git a/src/commands/settings/bad-word/AddBadWordCommand.js b/src/commands/settings/bad-word/AddBadWordCommand.js index ef898cabd..ffa873faf 100644 --- a/src/commands/settings/bad-word/AddBadWordCommand.js +++ b/src/commands/settings/bad-word/AddBadWordCommand.js @@ -50,7 +50,7 @@ export default class AddBadWordCommand extends AddAutoResponseCommand { const confirmation = new Confirmation({global, punishment, type}, timeAfter('1 hour')); const modal = new ModalBuilder() - .setTitle(`Create new Bad-word of type ${type}` + (global ? '(all channels)' : '')) + .setTitle(`Create new Bad-word of type ${type}`) .setCustomId(`bad-word:add:${await confirmation.save()}`) .addComponents( /** @type {*} */