Skip to content

Commit

Permalink
Fixed role react issues (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
PAndaContron authored Dec 8, 2020
1 parent 77e3c7e commit 5cc6f10
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion main.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import json
from discord.ext import commands
from discord import Intents
from datetime import datetime
from cogs.utils import get_config

Expand All @@ -18,7 +19,7 @@ class bcolors:


# Initialize bot with prefix '!'
bot = commands.Bot(command_prefix="!", help_command=None)
bot = commands.Bot(command_prefix="!", help_command=None, intents=Intents.all())

bot.load_extension("cogs.corecog")

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
discord.py==1.4.1
discord.py==1.5.1
requests
fuzzywuzzy
python-Levenshtein
Expand Down

0 comments on commit 5cc6f10

Please sign in to comment.