From 2d39c171cd02e879739c07b1a0c38994e52a7354 Mon Sep 17 00:00:00 2001 From: Iris System Date: Sun, 7 May 2023 16:50:35 +1200 Subject: [PATCH] feat(bot): add the reaction emojis to message command names --- .../ApplicationCommandMeta/ApplicationCommandList.cs | 6 +++--- scripts/app-commands/commands.py | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/PluralKit.Bot/ApplicationCommandMeta/ApplicationCommandList.cs b/PluralKit.Bot/ApplicationCommandMeta/ApplicationCommandList.cs index 3cdd78c1..7edcb3bb 100644 --- a/PluralKit.Bot/ApplicationCommandMeta/ApplicationCommandList.cs +++ b/PluralKit.Bot/ApplicationCommandMeta/ApplicationCommandList.cs @@ -4,7 +4,7 @@ namespace PluralKit.Bot; public partial class ApplicationCommandTree { - public static ApplicationCommand ProxiedMessageQuery = new(ApplicationCommandType.Message, "Message info"); - public static ApplicationCommand ProxiedMessageDelete = new(ApplicationCommandType.Message, "Delete message"); - public static ApplicationCommand ProxiedMessagePing = new(ApplicationCommandType.Message, "Ping message author"); + public static ApplicationCommand ProxiedMessageQuery = new(ApplicationCommandType.Message, "\U00002753 Message info"); + public static ApplicationCommand ProxiedMessageDelete = new(ApplicationCommandType.Message, "\U0000274c Delete message"); + public static ApplicationCommand ProxiedMessagePing = new(ApplicationCommandType.Message, "\U0001f514 Ping author"); } \ No newline at end of file diff --git a/scripts/app-commands/commands.py b/scripts/app-commands/commands.py index 89c5db1b..6a908ba7 100644 --- a/scripts/app-commands/commands.py +++ b/scripts/app-commands/commands.py @@ -1,9 +1,9 @@ from common import * COMMAND_LIST = [ - MessageCommand("Message info"), - MessageCommand("Delete message"), - MessageCommand("Ping message author"), + MessageCommand("\U00002753 Message info"), + MessageCommand("\U0000274c Delete message"), + MessageCommand("\U0001f514 Ping author"), ] if __name__ == "__main__":