Бот не отвечает на команду.
import disnake
from disnake.ext import commands
intents = disnake.Intents.all()
intents.message_content = True
bot = commands.Bot(command_prefix="!", intents=intents, test_guilds=[1129690972121464862])
@bot.event
async def on_ready():
print(f'Привет семпай!')
@bot.event
async def on_message(message):
if message.author == bot.user:
return
if message.content.startswith('hello'):
await message.channel.send('Hello!')
@bot.event
async def on_command_error(ctx, error):
await ctx.send(f'Произошла ошибка: {error}')
bot.run('токен')