|
|
@ -425,7 +425,7 @@ class Guild(SlottedModel, Permissible): |
|
|
|
return self.client.api.guilds_prune_count_get(self.id, days=days) |
|
|
|
|
|
|
|
def prune(self, days=None, compute_prune_count=None): |
|
|
|
return self.client.api.guilds_prune(self.id, days=days, compute_prune_count=compute_prune_count) |
|
|
|
return self.client.api.guilds_prune_create(self.id, days=days, compute_prune_count=compute_prune_count) |
|
|
|
|
|
|
|
def create_role(self, **kwargs): |
|
|
|
""" |
|
|
@ -534,7 +534,7 @@ class Guild(SlottedModel, Permissible): |
|
|
|
return self.client.api.guilds_emojis_get(self.id, emoji) |
|
|
|
|
|
|
|
def get_voice_regions(self): |
|
|
|
return self.client.api.guilds_regions_list(self.id) |
|
|
|
return self.client.api.guilds_voice_regions_list(self.id) |
|
|
|
|
|
|
|
def get_icon_url(self, still_format='webp', animated_format='gif', size=1024): |
|
|
|
if not self.icon: |
|
|
|