diff options
author | Parker <contact@pkrm.dev> | 2024-04-02 16:15:06 -0500 |
---|---|---|
committer | Parker <contact@pkrm.dev> | 2024-04-02 16:15:06 -0500 |
commit | e38ed487ae0914888e12f2ce4d1283f5e3ea50f7 (patch) | |
tree | d7d1e62d1ddcdbea0bfc8a2d2fc4b1effafdf105 /code/global_variables.py | |
parent | e0b75e7de525747b32014bc9d83af7d38eccaddd (diff) |
Add bug report command
Diffstat (limited to 'code/global_variables.py')
-rw-r--r-- | code/global_variables.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/code/global_variables.py b/code/global_variables.py index a726286..cf956eb 100644 --- a/code/global_variables.py +++ b/code/global_variables.py @@ -47,6 +47,7 @@ config.read_string(file_contents) BOT_TOKEN = config["BOT_INFO"]["TOKEN"] BOT_COLOR = discord.Color(int((config["BOT_INFO"]["BOT_COLOR"]).replace("#", ""), 16)) FEEDBACK_CHANNEL_ID = int(config["BOT_INFO"]["FEEDBACK_CHANNEL_ID"]) +BUG_CHANNEL_ID = int(config["BOT_INFO"]["BUG_CHANNEL_ID"]) LAVALINK_HOST = config["LAVALINK"]["HOST"] LAVALINK_PORT = config["LAVALINK"]["PORT"] |