From 762158e857edfc98193dc70de401a3e98d1ae119 Mon Sep 17 00:00:00 2001 From: spiral Date: Wed, 28 Jul 2021 02:19:37 -0400 Subject: [PATCH] Update different system error in MessageEdit --- PluralKit.Bot/Commands/MessageEdit.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PluralKit.Bot/Commands/MessageEdit.cs b/PluralKit.Bot/Commands/MessageEdit.cs index 0a08ee58..5aa04249 100644 --- a/PluralKit.Bot/Commands/MessageEdit.cs +++ b/PluralKit.Bot/Commands/MessageEdit.cs @@ -1,4 +1,4 @@ -#nullable enable +#nullable enable using System.Threading.Tasks; using Myriad.Rest; @@ -39,7 +39,7 @@ namespace PluralKit.Bot throw new PKSyntaxError("You need to include the message to edit in."); if (ctx.System.Id != msg.System.Id) - throw new PKError("Can't edit a message sent from a different account."); + throw new PKError("Can't edit a message sent by a different system."); var newContent = ctx.RemainderOrNull();