Ejemplo n.º 1
0
        public async Task ListTBSummaryNotes(IUser battleCommander = null)
        {
            var outputEmbeds = await AnspiritUtilities.GetOfficerNotesEmbedsAsync(battleCommander == null?Context.User : battleCommander, DbService, SwgohConstants.DarkSideTBCategory);

            await outputEmbeds.SendAllAsync(Context.Channel);
        }
Ejemplo n.º 2
0
        public async Task ListOfficerNotes(IUser user)
        {
            var outputEmbeds = await AnspiritUtilities.GetOfficerNotesEmbedsAsync(user, DbService);

            await outputEmbeds.SendAllAsync(Context.Channel);
        }