Skip to content

Commit

Permalink
I can't bear this anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
danieldietzler committed Jun 19, 2024
1 parent 3c69a4b commit c3a8a79
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/commands/slashes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,4 +136,14 @@ export class Commands {
await interaction.reply(channel.appliedTags.join(', '));
}
}

@Slash({ name: 'rtfm', description: 'Release notes' })
async handleRTFM(interaction: CommandInteraction) {
const channel = interaction.channel;
if (channel instanceof ThreadChannel) {
await interaction.reply(
`Stop wasting our time by blindly updating software without reading the release notes. ${Constants.Urls.Release}`,
);
}
}
}

0 comments on commit c3a8a79

Please sign in to comment.