diff --git a/PluralKit.Bot/Commands/SystemEdit.cs b/PluralKit.Bot/Commands/SystemEdit.cs index 0ea056c9..7b5a2754 100644 --- a/PluralKit.Bot/Commands/SystemEdit.cs +++ b/PluralKit.Bot/Commands/SystemEdit.cs @@ -73,6 +73,8 @@ public class SystemEdit public async Task Description(Context ctx, PKSystem target) { + ctx.CheckSystemPrivacy(target.Id, target.DescriptionPrivacy); + var isOwnSystem = target.Id == ctx.System?.Id; var noDescriptionSetMessage = "This system does not have a description set."; @@ -409,6 +411,8 @@ public class SystemEdit public async Task BannerImage(Context ctx, PKSystem target) { + ctx.CheckSystemPrivacy(target.Id, target.DescriptionPrivacy); + var isOwnSystem = target.Id == ctx.System?.Id; if (!ctx.HasNext() && ctx.Message.Attachments.Length == 0)