feature: Make bidirectional formatting optional (#2204)
* Init * Clearing up comment on config entry. * Update user entities to remove storage of the setting Co-authored-by: Quin Lynch <lynchquin@gmail.com>
This commit is contained in:
@@ -117,8 +117,8 @@ namespace Discord.WebSocket
|
||||
/// <returns>
|
||||
/// The full name of the user.
|
||||
/// </returns>
|
||||
public override string ToString() => Format.UsernameAndDiscriminator(this);
|
||||
private string DebuggerDisplay => $"{Format.UsernameAndDiscriminator(this)} ({Id}{(IsBot ? ", Bot" : "")})";
|
||||
public override string ToString() => Format.UsernameAndDiscriminator(this, Discord.FormatUsersInBidirectionalUnicode);
|
||||
private string DebuggerDisplay => $"{Format.UsernameAndDiscriminator(this, Discord.FormatUsersInBidirectionalUnicode)} ({Id}{(IsBot ? ", Bot" : "")})";
|
||||
internal SocketUser Clone() => MemberwiseClone() as SocketUser;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user