From 12d29eba443e32279a14788359ee2b48c31fc1a2 Mon Sep 17 00:00:00 2001 From: Ske Date: Mon, 9 Mar 2020 11:00:28 +0100 Subject: [PATCH] Fix wrong message in privacy lookup --- PluralKit.Bot/Commands/MemberEdit.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PluralKit.Bot/Commands/MemberEdit.cs b/PluralKit.Bot/Commands/MemberEdit.cs index 2f96466f..a6fff5e7 100644 --- a/PluralKit.Bot/Commands/MemberEdit.cs +++ b/PluralKit.Bot/Commands/MemberEdit.cs @@ -371,9 +371,9 @@ namespace PluralKit.Bot else { if (target.MemberPrivacy == PrivacyLevel.Public) - await ctx.Reply("This member's privacy is currently set to **public**. This member will not show up in member lists and will return limited information when queried by other accounts."); + await ctx.Reply("This member's privacy is currently set to **public**. This member will show up in member lists and will return all information when queried by other accounts."); else - await ctx.Reply("This member's privacy is currently set to **private**. This member will show up in member lists and will return all information when queried by other accounts."); + await ctx.Reply("This member's privacy is currently set to **private**. This member will not show up in member lists and will return limited information when queried by other accounts."); return; }