Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed role react issues #86

Merged
merged 1 commit into from
Dec 8, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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