fix clear_commands

This commit is contained in:
Aaron Riedel 2022-03-07 05:01:52 +01:00
parent e1e136f086
commit caa690607c
Signed by: aaron
GPG key ID: 643004654D40D577

View file

@ -1,22 +1,27 @@
import discord
import asyncio
import time
import datetime
import random
import os
from os import system
from os import environ
from discord.ext import commands
from discord.commands import Option
from discord.commands import permissions
from discord.ui import InputText, Modal
intents = discord.Intents(
guilds=True,
members=True,
messages=True,
)
intents = discord.Intents.default()
intents.members = True
intents.message_content = True
token = os.environ['TOKEN']
prefix = os.environ['PREFIX']
bot = commands.Bot(intents=intents, command_prefix=prefix)
client = discord.Client()
@bot.event
async def on_ready():
async def on_connect():
print("Bot ready on Version %s..." % discord.__version__)
await bot.sync_commands(unregister_guilds=[261575556708040705])
bot.run(token)