From bdaefb36903398075934794469873785d83cdcb9 Mon Sep 17 00:00:00 2001 From: RogueException Date: Tue, 1 Dec 2015 18:49:40 -0400 Subject: [PATCH] Fix docs referencing lib/ folder --- src/Discord.Net/DiscordWSClientConfig.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Discord.Net/DiscordWSClientConfig.cs b/src/Discord.Net/DiscordWSClientConfig.cs index 64c092d9c..672055607 100644 --- a/src/Discord.Net/DiscordWSClientConfig.cs +++ b/src/Discord.Net/DiscordWSClientConfig.cs @@ -35,10 +35,10 @@ namespace Discord private int? _voiceBitrate = null; //Experimental Features - /// (Experimental) Enables the voice websocket and UDP client and specifies how it will be used. Any option other than Disabled requires the opus .dll or .so be in the local lib/ folder. + /// (Experimental) Enables the voice websocket and UDP client and specifies how it will be used. Any option other than Disabled requires the opus .dll or .so be in the local or system folder. public DiscordVoiceMode VoiceMode { get { return _voiceMode; } set { SetValue(ref _voiceMode, value); } } private DiscordVoiceMode _voiceMode = DiscordVoiceMode.Disabled; - /// (Experimental) Enables the voice websocket and UDP client. This option requires the libsodium .dll or .so be in the local lib/ folder. + /// (Experimental) Enables the voice websocket and UDP client. This option requires the libsodium .dll or .so be in the local or system folder. public bool EnableVoiceEncryption { get { return _enableVoiceEncryption; } set { SetValue(ref _enableVoiceEncryption, value); } } private bool _enableVoiceEncryption = true; /// (Experimental) Instructs Discord to not send send information about offline users, for servers with more than 50 users.