From 0fd9f01386867bc1a4c9e5135193284200b7b920 Mon Sep 17 00:00:00 2001 From: MrCakeSlayer <13650699+MrCakeSlayer@users.noreply.github.com> Date: Tue, 20 Jul 2021 00:21:09 -0400 Subject: [PATCH] Add note about slash command creation --- docs/guides/slash-commands/02-creating-slash-commands.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/guides/slash-commands/02-creating-slash-commands.md b/docs/guides/slash-commands/02-creating-slash-commands.md index 387d39ab6..902a6b3ab 100644 --- a/docs/guides/slash-commands/02-creating-slash-commands.md +++ b/docs/guides/slash-commands/02-creating-slash-commands.md @@ -81,3 +81,4 @@ public async Task Client_Ready() } ``` +**Note**: Slash commands only need to be created once. They do _not_ have to be 'created' on every startup or connection. The example simple shows creating them in the ready event as it's simpler than creating normal bot commands to register slash commands.