From 22aadace4565215565aa096b0626b73cd3cd3130 Mon Sep 17 00:00:00 2001 From: Joe4evr Date: Sun, 13 Aug 2017 03:03:19 +0200 Subject: [PATCH] Add comment about the Commands package --- docs/guides/getting_started/samples/intro/structure.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/guides/getting_started/samples/intro/structure.cs b/docs/guides/getting_started/samples/intro/structure.cs index fff2535ea..346319eb4 100644 --- a/docs/guides/getting_started/samples/intro/structure.cs +++ b/docs/guides/getting_started/samples/intro/structure.cs @@ -19,6 +19,7 @@ class Program private readonly DiscordSocketClient _client; // Keep the CommandService and IServiceCollection around for use with commands. + // These two types require you install the Discord.Net.Commands package. private readonly IServiceCollection _map = new ServiceCollection(); private readonly CommandService _commands = new CommandService();