From 97876f2c34192224d92c36952e95c284f73441ee Mon Sep 17 00:00:00 2001 From: Alkali-Metal Date: Mon, 2 Apr 2018 15:39:04 -0600 Subject: [PATCH] Fix error in message sending. (#89) Was throwing an AttributeError as `bot` doesn't have a `state` attribute. --- docs/bot_tutorial/message_embeds.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/bot_tutorial/message_embeds.md b/docs/bot_tutorial/message_embeds.md index 41ac400..dbcca04 100644 --- a/docs/bot_tutorial/message_embeds.md +++ b/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. With `channel.send_message()`: ```py -self.bot.state.channels.get().send_message('[optional text]', embed=embed) +self.state.channels.get().send_message('[optional text]', embed=embed) ``` with the `event.msg.reply()` function: ```py