summaryrefslogtreecommitdiff
path: root/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'config.py')
-rw-r--r--config.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/config.py b/config.py
index 84ba673..4703448 100644
--- a/config.py
+++ b/config.py
@@ -1,5 +1,6 @@
NAME = 'shuffle bot'
TOKEN_ENV_VAR = 'DISCORD_TOKEN'
+ADMIN_CHANNEL_ENV_VAR = 'ADMIN_CHANNEL'
TUTOR_FILE_PATH = 'tutors'
COMMAND_PREFIX = 's!'
@@ -13,7 +14,6 @@ This software is open-source <https://git.kobert.dev/lovefinderrz.git/>!
CATEGORY_CHANNEL_NAME = 'KENNENLERNEN'
LOBBY_CHANNEL_NAME = 'Lobby'
-LOBBY_CHANNEL_TOPIC = 'Wer auch schon immer so richtig durchgeshuffelt werden wollte ist hier genau richtig!'
# time that one loop cycle needs (in seconds)
DEFAULT_LOOP_TIME = 3 * 60
@@ -46,3 +46,10 @@ Vielleicht ja beim nächsten Mal 😎
SCOREBOARD_TITLE = 'Scoreboard'
SCOREBOARD_TEXT = 'Hier siehst du, wer wie viele Punkte hat:'
+
+CHANNEL_PERMISSIONS = {
+ 'priority_speaker': False,
+ 'stream': False,
+ 'move_members': False,
+ 'mute_members': False,
+}