Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/commands/about.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
},
]),
Expand Down
12 changes: 7 additions & 5 deletions src/commands/tag.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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...`,
),
],
});
}
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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())
export default (new EmbedBuilder().setFooter({ text: 'Arduino Bot • GPL-3.0 • /tag' }).setColor('#dc5b05').toJSON())
4 changes: 2 additions & 2 deletions src/utils/tags.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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?',
Expand Down