From b522a4c17521b19eeea261b0e9c48e39e5b72ce7 Mon Sep 17 00:00:00 2001 From: spiral Date: Sat, 14 Nov 2020 10:51:13 -0500 Subject: [PATCH] Remove duplicated code --- PluralKit.Bot/Commands/Groups.cs | 22 +--------------------- 1 file changed, 1 insertion(+), 21 deletions(-) diff --git a/PluralKit.Bot/Commands/Groups.cs b/PluralKit.Bot/Commands/Groups.cs index 08554de7..fc69b185 100644 --- a/PluralKit.Bot/Commands/Groups.cs +++ b/PluralKit.Bot/Commands/Groups.cs @@ -320,7 +320,7 @@ namespace PluralKit.Bot { ctx.CheckOwnGroup(target); - var members = await ParseMemberList(ctx); + var members = await ctx.ParseMemberList(ctx.System.Id); await using var conn = await _db.Obtain(); @@ -385,26 +385,6 @@ namespace PluralKit.Bot Add, Remove } - - private static async Task> ParseMemberList(Context ctx) - { - // TODO: move this to a context extension and share with the switch command somewhere, after branch merge? - - var members = new List(); - while (ctx.HasNext()) - { - var member = await ctx.MatchMember(); - if (member == null) - throw new PKSyntaxError(ctx.CreateMemberNotFoundError(ctx.PopArgument()));; - if (member.System != ctx.System.Id) - throw new PKError($"Member **{member.Name}** (`{member.Hid}`) is not in your own system, so you can't add it to a group."); - members.Add(member); - } - - if (members.Count == 0) - throw new PKSyntaxError("You must pass one or more members."); - return members; - } public async Task GroupPrivacy(Context ctx, PKGroup target, PrivacyLevel? newValueFromCommand) {