aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2018-04-28 09:25:20 +0100
committerGravatar Gareth Coles <[email protected]>2018-04-28 09:25:20 +0100
commite3306b3b1d263fe1fc751cfdccd6469c29b9aa2c (patch)
tree87181ed02726926168f6e6431d5100209de397f6
parentUse `ast.literal_eval` in get/setitem mimick parsing. (#59) (diff)
Add help channel 4
-rw-r--r--bot/cogs/bot.py3
-rw-r--r--bot/constants.py1
2 files changed, 3 insertions, 1 deletions
diff --git a/bot/cogs/bot.py b/bot/cogs/bot.py
index 0990e99c7..3870356ce 100644
--- a/bot/cogs/bot.py
+++ b/bot/cogs/bot.py
@@ -10,7 +10,7 @@ from dulwich.repo import Repo
from bot.constants import (
ADMIN_ROLE, BOT_AVATAR_URL, BOT_CHANNEL,
DEVTEST_CHANNEL, HELP1_CHANNEL, HELP2_CHANNEL,
- HELP3_CHANNEL, MODERATOR_ROLE, OWNER_ROLE,
+ HELP3_CHANNEL, HELP4_CHANNEL, MODERATOR_ROLE, OWNER_ROLE,
PYTHON_CHANNEL, PYTHON_GUILD, VERIFIED_ROLE
)
from bot.decorators import with_role
@@ -30,6 +30,7 @@ class Bot:
self.channel_cooldowns = {HELP1_CHANNEL: 0,
HELP2_CHANNEL: 0,
HELP3_CHANNEL: 0,
+ HELP4_CHANNEL: 0,
PYTHON_CHANNEL: 0,
DEVTEST_CHANNEL: 0,
BOT_CHANNEL: 0
diff --git a/bot/constants.py b/bot/constants.py
index 61db90882..b0a2feb2f 100644
--- a/bot/constants.py
+++ b/bot/constants.py
@@ -11,6 +11,7 @@ DEVTEST_CHANNEL = 414574275865870337
HELP1_CHANNEL = 303906576991780866
HELP2_CHANNEL = 303906556754395136
HELP3_CHANNEL = 303906514266226689
+HELP4_CHANNEL = 439702951246692352
MOD_LOG_CHANNEL = 282638479504965634
PYTHON_CHANNEL = 267624335836053506
VERIFICATION_CHANNEL = 352442727016693763