Skip to content
This repository has been archived by the owner on Dec 26, 2022. It is now read-only.

Commit

Permalink
馃悰 fix GuildFeatures not existing
Browse files Browse the repository at this point in the history
  • Loading branch information
Lunarmagpie committed Jan 5, 2022
1 parent 1054872 commit c5701ef
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions pincer/objects/guild/features.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,25 +54,25 @@ class GuildFeature(Enum):
PRIVATE_THREADS:
Guild can have private threads.
"""
ANIMATED_ICON = auto()
BANNER = auto()
COMMERCE = auto()
COMMUNITY = auto()
DISCOVERABLE = auto()
FEATURABLE = auto()
INVITE_SPLASH = auto()
MEMBER_VERIFICATION_GATE_ENABLED = auto()
NEWS = auto()
PARTNERED = auto()
PREVIEW_ENABLED = auto()
VANITY_URL = auto()
VERIFIED = auto()
VIP_REGIONS = auto()
WELCOME_SCREEN_ENABLED = auto()
TICKETED_EVENTS_ENABLED = auto()
MONETIZATION_ENABLED = auto()
MORE_STICKERS = auto()
THREE_DAY_THREAD_ARCHIVE = auto()
SEVEN_DAY_THREAD_ARCHIVE = auto()
PRIVATE_THREADS = auto()
NEW_THREAD_PERMISSIONS = auto()
ANIMATED_ICON = "ANIMATED_ICON"
BANNER = "BANNER"
COMMERCE = "COMMERCE"
COMMUNITY = "COMMUNITY"
DISCOVERABLE = "DISCOVERABLE"
FEATURABLE = "FEATURABLE"
INVITE_SPLASH = "INVITE_SPLASH"
MEMBER_VERIFICATION_GATE_ENABLED = "MEMBER_VERIFICATION_GATE_ENABLED"
NEWS = "NEWS"
PARTNERED = "PARTNERED"
PREVIEW_ENABLED = "PREVIEW_ENABLED"
VANITY_URL = "VANITY_URL"
VERIFIED = "VERIFIED"
VIP_REGIONS = "VIP_REGIONS"
WELCOME_SCREEN_ENABLED = "WELCOME_SCREEN_ENABLED"
TICKETED_EVENTS_ENABLED = "TICKETED_EVENTS_ENABLED"
MONETIZATION_ENABLED = "MONETIZATION_ENABLED"
MORE_STICKERS = "MORE_STICKERS"
THREE_DAY_THREAD_ARCHIVE = "THREE_DAY_THREAD_ARCHIVE"
SEVEN_DAY_THREAD_ARCHIVE = "SEVEN_DAY_THREAD_ARCHIVE"
PRIVATE_THREADS = "PRIVATE_THREADS"
NEW_THREAD_PERMISSIONS = "NEW_THREAD_PERMISSIONS"

0 comments on commit c5701ef

Please sign in to comment.