aboutsummaryrefslogtreecommitdiffstats
path: root/bot/constants.py
diff options
context:
space:
mode:
authorGravatar Shivansh-007 <[email protected]>2021-01-27 10:43:19 +0530
committerGravatar Shivansh-007 <[email protected]>2021-01-27 10:43:19 +0530
commita7ffa0926b47bf40cd034eeb2b5e9d5dcd04798f (patch)
treec362ad9ff61710c40af2ae1cd7010ab3224b2184 /bot/constants.py
parentImprove code block regex (diff)
Add check for in category and in remove overide_channel check and do it without decorator
Diffstat (limited to 'bot/constants.py')
-rw-r--r--bot/constants.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/bot/constants.py b/bot/constants.py
index 1d41a53e..ce1ca29a 100644
--- a/bot/constants.py
+++ b/bot/constants.py
@@ -9,6 +9,7 @@ __all__ = (
"AdventOfCode",
"Branding",
"Channels",
+ "Categories",
"Client",
"Colours",
"Emojis",
@@ -100,6 +101,7 @@ class Channels(NamedTuple):
big_brother_logs = 468507907357409333
bot = 267659945086812160
checkpoint_test = 422077681434099723
+ organisation = 551789653284356126
devalerts = 460181980097675264
devlog = int(environ.get("CHANNEL_DEVLOG", 622895325144940554))
dev_contrib = 635950537262759947
@@ -128,6 +130,12 @@ class Channels(NamedTuple):
voice_chat_1 = 799647045886541885
+class Categories(NamedTuple):
+ development = 411199786025484308
+ devprojects = 787641585624940544
+ media = 799054581991997460
+
+
class Client(NamedTuple):
name = "Sir Lancebot"
guild = int(environ.get("BOT_GUILD", 267624335836053506))