From 9bae249bd5d67eb3a24e087da5ff95fbab8e466f Mon Sep 17 00:00:00 2001 From: Shadow Date: Sun, 25 Aug 2024 16:01:44 +0000 Subject: [PATCH] prepend "tripbot" to report msg and report user (#836) Co-authored-by: LunaUrsa <1836049+LunaUrsa@users.noreply.github.com> --- src/discord/commands/guild/m.report.ts | 2 +- src/discord/commands/guild/u.report.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/discord/commands/guild/m.report.ts b/src/discord/commands/guild/m.report.ts index 417dba3ca..92d90748e 100644 --- a/src/discord/commands/guild/m.report.ts +++ b/src/discord/commands/guild/m.report.ts @@ -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; diff --git a/src/discord/commands/guild/u.report.ts b/src/discord/commands/guild/u.report.ts index 777c3e75f..f89e6d1e3 100644 --- a/src/discord/commands/guild/u.report.ts +++ b/src/discord/commands/guild/u.report.ts @@ -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;