diff options
author | 2023-05-01 14:47:55 +0100 | |
---|---|---|
committer | 2023-05-06 13:20:47 +0100 | |
commit | f57fbfb7dea0990b0ac6fddfa9b04c862801c29b (patch) | |
tree | bcbaa18ecd483c372605d5d7b08dd7d00f60e164 /bot/constants.py | |
parent | revert renaming of Client to Bot (diff) |
move lovefest role under the Roles class
Diffstat (limited to 'bot/constants.py')
-rw-r--r-- | bot/constants.py | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/bot/constants.py b/bot/constants.py index 4a977b79..5f70c8b9 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -14,7 +14,6 @@ __all__ = ( "Colours", "Emojis", "Icons", - "Lovefest", "Month", "Roles", "Tokens", @@ -243,16 +242,6 @@ class Icons: ) -class _Lovefest(EnvConfig): - - EnvConfig.Config.env_prefix = "lovefest_" - - role_id = 542431903886606399 - - -Lovefest = _Lovefest() - - class Month(enum.IntEnum): JANUARY = 1 FEBRUARY = 2 @@ -288,6 +277,8 @@ class _Roles(EnvConfig): core_developers = 587606783669829632 everyone = Client.guild + lovefest = 542431903886606399 + Roles = _Roles() |