public async Task List(CommandContext ctx) { var allSystems = new List <string>(); Program.systems.ForEach(x => allSystems.Add(x.Name)); var embed = EmbedBase.ListEmbed(allSystems, "Systems"); await ctx.RespondAsync(embed : embed); }