diff --git a/src/commands/about.ts b/src/commands/about.ts index 5b7b662..672911b 100644 --- a/src/commands/about.ts +++ b/src/commands/about.ts @@ -27,7 +27,7 @@ export class AboutCommand extends Command { { name: 'Node Version', value: process.version, inline: true }, { name: 'Contributing', - value: '[GitHub](https://github.com/BluLightShow/arduino-bot)', + value: '[GitHub](https://github.com/arduinodiscord/bot)', inline: true }, ]), diff --git a/src/commands/tag.ts b/src/commands/tag.ts index 2fa200e..df633ec 100644 --- a/src/commands/tag.ts +++ b/src/commands/tag.ts @@ -137,12 +137,12 @@ export class TagCommand extends Command { if (user) { // Notify the user in the original channel (not ephemeral) return interaction.reply({ - content: `<@${user.id}>`, + content: `<@${user.id}> you've been tagged with standard helpful info.`, ephemeral: false, embeds: [ new EmbedBuilder(universalEmbed) - .setTitle('Tag Sent') - .setDescription(`See <#${BOT_COMMANDS_CHANNEL_ID}>`), + .setTitle('Your answer is in the Bot-Commands Channel...') + .setDescription(`See <#${BOT_COMMANDS_CHANNEL_ID}> for your info!`), //todo: 'info about <@$tagName}>!' would be better ], }); } else { @@ -152,8 +152,10 @@ export class TagCommand extends Command { ephemeral: true, embeds: [ new EmbedBuilder(universalEmbed) - .setTitle('Tag Sent') - .setDescription(`See <#${BOT_COMMANDS_CHANNEL_ID}>`), + .setTitle('Requested info was sent in the Bot-Commands Channel') + .setDescription( + `See <#${BOT_COMMANDS_CHANNEL_ID}>... only you can see this message...`, + ), ], }); } diff --git a/src/index.ts b/src/index.ts index 62b8a29..8951206 100644 --- a/src/index.ts +++ b/src/index.ts @@ -26,4 +26,4 @@ const client = new SapphireClient({ logger.info('Attempting to connect to discord client...') client.login(BOT_TOKEN) -export default (new EmbedBuilder().setFooter({ text: 'Arduino Bot • Submit bugs on GitHub!' }).setColor('#dc5b05').toJSON()) \ No newline at end of file +export default (new EmbedBuilder().setFooter({ text: 'Arduino Bot • GPL-3.0 • /tag' }).setColor('#dc5b05').toJSON()) \ No newline at end of file diff --git a/src/utils/tags.ts b/src/utils/tags.ts index 606d089..766dd3e 100644 --- a/src/utils/tags.ts +++ b/src/utils/tags.ts @@ -111,9 +111,9 @@ export default { 'If it is, unplug and re-plug your board, then check for blinking LEDs. If only the Power LED or no LEDs light up, ask for further assistance (not for all boards).', }, { - name: '8. Do you have a Nano or other Atmega 328p-based board?', + name: '8. Do you have a Nano or similar Atmega 328p-based board?', value: - "If so, try using the old bootloader. In the Arduino IDE, go to Tools -> Processor and select 328p (old bootloader). *If your board doesn't have an Atmega 328p, you can skip this step.*", + 'If so, try using the old bootloader. In the Arduino IDE, go to Tools -> Processor and select 328p (old bootloader). This only applies to Nanos and Nano variants. *Boards this applies to will show the Processor option in the Tools menu. Otherwise, you can skip this step.*', }, { name: '9. Does your onboard LED blink when you press the reset button?',