Missed one

This commit is contained in:
Chris Rhodes 2016-01-08 10:05:48 -08:00
parent da20bf63b5
commit 28d1f63219

View file

@ -17,7 +17,7 @@ import (
// A Message stores all data related to a specific Discord message. // A Message stores all data related to a specific Discord message.
type Message struct { type Message struct {
ID string `json:"id"` ID string `json:"id"`
Author User `json:"author"` Author *User `json:"author"`
Content string `json:"content"` Content string `json:"content"`
Attachments []*Attachment `json:"attachments"` Attachments []*Attachment `json:"attachments"`
Tts bool `json:"tts"` Tts bool `json:"tts"`