Browse Source

Fix error in message sending. (#89)

Was throwing an AttributeError as `bot` doesn't have a `state` attribute.
pull/87/merge
Alkali-Metal 7 years ago
committed by Andrei Zbikowski
parent
commit
97876f2c34
  1. 2
      docs/bot_tutorial/message_embeds.md

2
docs/bot_tutorial/message_embeds.md

@ -49,7 +49,7 @@ embed.color = '10038562' #This can be any color, but I chose a nice dark red tin
Once your embed is finshed, you can send it using the `channel.send_message()` message or the `event.msg.reply()` function. Once your embed is finshed, you can send it using the `channel.send_message()` message or the `event.msg.reply()` function.
With `channel.send_message()`: With `channel.send_message()`:
```py ```py
self.bot.state.channels.get(<ChannelID>).send_message('[optional text]', embed=embed) self.state.channels.get(<ChannelID>).send_message('[optional text]', embed=embed)
``` ```
with the `event.msg.reply()` function: with the `event.msg.reply()` function:
```py ```py

Loading…
Cancel
Save