From 614059c79f774e5474e0bbbc74e52f1ba45b7997 Mon Sep 17 00:00:00 2001 From: spiral Date: Fri, 3 Jun 2022 01:15:15 -0400 Subject: [PATCH] fix: correct error text on pk;unlink --- PluralKit.Bot/Commands/SystemLink.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PluralKit.Bot/Commands/SystemLink.cs b/PluralKit.Bot/Commands/SystemLink.cs index 4fe256d0..593f1ad1 100644 --- a/PluralKit.Bot/Commands/SystemLink.cs +++ b/PluralKit.Bot/Commands/SystemLink.cs @@ -32,7 +32,7 @@ public class SystemLink ulong id; if (!ctx.MatchUserRaw(out id)) - throw new PKSyntaxError("You must pass an account to link with (either ID or @mention)."); + throw new PKSyntaxError("You must pass an account to unlink from (either ID or @mention)."); var accountIds = (await ctx.Repository.GetSystemAccounts(ctx.System.Id)).ToList(); if (!accountIds.Contains(id)) throw Errors.AccountNotLinked;