Skip to content

Commit

Permalink
prepend "tripbot" to report msg and report user
Browse files Browse the repository at this point in the history
  • Loading branch information
theimperious1 committed Aug 13, 2024
1 parent 19066b0 commit 7a8ed57
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/discord/commands/guild/m.report.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const F = f(__filename);

export const mReport: MessageCommand = {
data: new ContextMenuCommandBuilder()
.setName('Report Message')
.setName('TripBot Report Message')
.setType(ApplicationCommandType.Message),
async execute(interaction) {
if (!interaction.guild) return false;
Expand Down
2 changes: 1 addition & 1 deletion src/discord/commands/guild/u.report.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const F = f(__filename);

export const uReport: UserCommand = {
data: new ContextMenuCommandBuilder()
.setName('Report User')
.setName('TripBot Report User')
.setType(ApplicationCommandType.User),
async execute(interaction) {
if (!interaction.guild) return false;
Expand Down

0 comments on commit 7a8ed57

Please sign in to comment.