From 434a08fdcb133ac21ac31604d4beeb4864b43c31 Mon Sep 17 00:00:00 2001 From: Armano den Boef Date: Mon, 21 Mar 2022 19:58:46 +0100 Subject: [PATCH] Clearing up comment on config entry. --- src/Discord.Net.Core/DiscordConfig.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/Discord.Net.Core/DiscordConfig.cs b/src/Discord.Net.Core/DiscordConfig.cs index 7c535ce1e..006a1ca17 100644 --- a/src/Discord.Net.Core/DiscordConfig.cs +++ b/src/Discord.Net.Core/DiscordConfig.cs @@ -189,8 +189,13 @@ namespace Discord public bool UseInteractionSnowflakeDate { get; set; } = true; /// - /// Gets or sets if any user's override formats the string in respect to bidirectional unicode. + /// Gets or sets if the Rest/Socket user override formats the string in respect to bidirectional unicode. /// + /// + /// By default, the returned value will be "?Discord?#1234", to work with bidirectional usernames. + ///
+ /// If set to , this value will be "Discord#1234". + ///
public bool FormatUsersInBidirectionalUnicode { get; set; } = true; } }