mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-14 01:30:13 +00:00
Fix wrong message in privacy lookup
This commit is contained in:
parent
0eb2e8be6f
commit
12d29eba44
1 changed files with 2 additions and 2 deletions
|
|
@ -371,9 +371,9 @@ namespace PluralKit.Bot
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (target.MemberPrivacy == PrivacyLevel.Public)
|
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
|
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;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue