if (OtherUser != null)
{
string bio = OtherUser.Bio.Replace("\n","").Replace(" ","").Trim();
if (bio.Contains("OwlHouse#disc"))
{
await RespondAsync($"{Context.User.Mention} You have been verified.",ephemeral: true);
}
else
{
await RespondAsync($"{Context.User.Mention} You do not have the code in your Bio. \n`[ BIO ]` \n{bio}", ephemeral: true);
}
}
if (OtherUser != null)
{
string bio = OtherUser.Bio.Replace("\n","").Replace(" ","").Trim();
if (bio.Contains("OwlHouse#disc"))
{
await RespondAsync($"{Context.User.Mention} You have been verified.",ephemeral: true);
}
else
{
await RespondAsync($"{Context.User.Mention} You do not have the code in your Bio. \n`[ BIO ]` \n{bio}", ephemeral: true);
}
}