benwong01f611 / discord-music-cog

7 stars 1 forks source link

error #1

Open Catchii opened 2 years ago

Catchii commented 2 years ago

Error: Command raised an exception: AttributeError: 'Context' object has no attribute 'respond'

benwong01f611 commented 2 years ago

Hi Catchii, are you starting the bot with discord.ext.bridge.Bot? Please provide which version of the music cog and the version of pycord, so that I can debug more easily. Thanks.

Catchii commented 2 years ago

how do i start it with discord.ext.bridge.Bot?

Catchii commented 2 years ago

and i use the newest pycord version

benwong01f611 commented 2 years ago

how do i start it with discord.ext.bridge.Bot?

When you start up your bot, you will need something like this:

from discord.ext import bridge
bot = bridge.Bot(command_prefix="-")
bot.run("YOUR_TOKEN")