From 2ef53330fb8b19b5a150ec1b3a2b16f6896835a5 Mon Sep 17 00:00:00 2001 From: BlockBuilder57 Date: Mon, 29 May 2017 13:33:28 -0500 Subject: [PATCH] Add newest verification level Users must have a verified phone on their Discord account. http://i.imgur.com/BexDgzS.png --- src/Discord.Net.Core/Entities/Guilds/VerificationLevel.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Discord.Net.Core/Entities/Guilds/VerificationLevel.cs b/src/Discord.Net.Core/Entities/Guilds/VerificationLevel.cs index d6828b5c9..ac51fe927 100644 --- a/src/Discord.Net.Core/Entities/Guilds/VerificationLevel.cs +++ b/src/Discord.Net.Core/Entities/Guilds/VerificationLevel.cs @@ -9,6 +9,8 @@ /// Users must fulfill the requirements of Low, and be registered on Discord for at least 5 minutes. Medium = 2, /// Users must fulfill the requirements of Medium, and be a member of this guild for at least 10 minutes. - High = 3 + High = 3, + /// Users must fulfill the requirements of High, and must have a verified phone on their Discord account. + Extreme = 4 } }