diff --git a/Main.py b/Main.py index b7cff23..fd1e0c4 100644 --- a/Main.py +++ b/Main.py @@ -17,7 +17,9 @@ botVer = 'v1.2.1' if os.name == 'nt': os.system('cls') else: os.system('clear') -client = discord.Bot() # READ COMMENT AT LINE 13 FOR MORE INFO +intents = discord.Intents.default() +intents.message_content = (True) +client = discord.Bot(intents=intents) # READ COMMENT AT LINE 13 FOR MORE INFO global startTime startTime = time.time() homedir = os.getcwd()