Fix wrong message in privacy lookup

This commit is contained in:
Ske 2020-03-09 11:00:28 +01:00
parent 0eb2e8be6f
commit 12d29eba44

View File

@ -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;
}