From 8ff25bfe2726369ed5794e3e8945675524cc4883 Mon Sep 17 00:00:00 2001 From: Justin <14909116+ThatGuyJustin@users.noreply.github.com> Date: Mon, 3 Jun 2019 20:15:08 -0400 Subject: [PATCH] Adding more guild things that API returns to bots - Vanity Code - Max Members & Presences - Description --- disco/types/guild.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/disco/types/guild.py b/disco/types/guild.py index f49576a..d356630 100644 --- a/disco/types/guild.py +++ b/disco/types/guild.py @@ -339,6 +339,10 @@ class Guild(SlottedModel, Permissible): member_count = Field(int) premium_tier = Field(int) premium_subscription_count = Field(int) + vanity_url_code = Field(text) + max_presences = Field(int) + max_members = Field(int) + description = Field(text) def __init__(self, *args, **kwargs): super(Guild, self).__init__(*args, **kwargs)