s/message.channel.send/message.reply/

pull/3/head
Michael Yang 2023-08-03 23:55:28 -07:00
parent e986eb2811
commit 29040d6dfc
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ async def on_message(message):
await message.channel.send('What can I do for you?', reference=message)
return
response = await message.channel.send(':thinking:', reference=message)
response = await message.reply(':thinking:')
# TODO: discord has a 2000 character limit, so we need to split the response
buffer = ''