Exemplo n.º 1
0
        /// <summary>
        /// Display the message, menu options and all
        /// </summary>
        /// <returns></returns>
        /// <param name="channel">The channel to display the message in. If left empty, it will be displayed in the channel the command was called in</param>
        public override async Task Display(IMessageChannel channel = null, string message = "")
        {
            if (channel == null)
            {
                channel = Context.Channel;
            }

            await base.Display(channel, message);

            await AddReactions();             // Add the reactions

            EventQueueManager.AddEvent(this); // Add the embed to the event queue with the correct ID
        }