Skip to content

Commit

Permalink
ROLE_IDS -> list of tuples
Browse files Browse the repository at this point in the history
  • Loading branch information
koyakonsta authored Jan 31, 2024
1 parent 25fc481 commit 7b60f6c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
TOKEN = os.environ.get("TOKEN") # required
DEBUG = os.environ.get("DEBUG", False)

ROLE_IDS = {
"Webgroup": 1166751688598761583,
"Gamez": 1089204642241581139,
"Croomer": 1172696659097047050
}
ROLE_IDS = [
("Webgroup", 1166751688598761583),
("Gamez", 1089204642241581139),
("Croomer", 1172696659097047050)
]

CHANNEL_IDS = {"lobby": 627542044390457350}

0 comments on commit 7b60f6c

Please sign in to comment.