mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 04:56:49 +00:00
feat(bot): add the reaction emojis to message command names
This commit is contained in:
parent
86717603d3
commit
2d39c171cd
2 changed files with 6 additions and 6 deletions
|
|
@ -4,7 +4,7 @@ namespace PluralKit.Bot;
|
||||||
|
|
||||||
public partial class ApplicationCommandTree
|
public partial class ApplicationCommandTree
|
||||||
{
|
{
|
||||||
public static ApplicationCommand ProxiedMessageQuery = new(ApplicationCommandType.Message, "Message info");
|
public static ApplicationCommand ProxiedMessageQuery = new(ApplicationCommandType.Message, "\U00002753 Message info");
|
||||||
public static ApplicationCommand ProxiedMessageDelete = new(ApplicationCommandType.Message, "Delete message");
|
public static ApplicationCommand ProxiedMessageDelete = new(ApplicationCommandType.Message, "\U0000274c Delete message");
|
||||||
public static ApplicationCommand ProxiedMessagePing = new(ApplicationCommandType.Message, "Ping message author");
|
public static ApplicationCommand ProxiedMessagePing = new(ApplicationCommandType.Message, "\U0001f514 Ping author");
|
||||||
}
|
}
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
from common import *
|
from common import *
|
||||||
|
|
||||||
COMMAND_LIST = [
|
COMMAND_LIST = [
|
||||||
MessageCommand("Message info"),
|
MessageCommand("\U00002753 Message info"),
|
||||||
MessageCommand("Delete message"),
|
MessageCommand("\U0000274c Delete message"),
|
||||||
MessageCommand("Ping message author"),
|
MessageCommand("\U0001f514 Ping author"),
|
||||||
]
|
]
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue