|
@@ -587,12 +587,13 @@ type VoiceState struct {
|
|
|
|
|
|
|
|
|
type Presence struct {
|
|
|
- User *User `json:"user"`
|
|
|
- Status Status `json:"status"`
|
|
|
- Game *Game `json:"game"`
|
|
|
- Nick string `json:"nick"`
|
|
|
- Roles []string `json:"roles"`
|
|
|
- Since *int `json:"since"`
|
|
|
+ User *User `json:"user"`
|
|
|
+ Status Status `json:"status"`
|
|
|
+ Game *Game `json:"game"`
|
|
|
+ Activities []*Game `json:"activities"`
|
|
|
+ Nick string `json:"nick"`
|
|
|
+ Roles []string `json:"roles"`
|
|
|
+ Since *int `json:"since"`
|
|
|
}
|
|
|
|
|
|
|
|
@@ -604,6 +605,7 @@ const (
|
|
|
GameTypeStreaming
|
|
|
GameTypeListening
|
|
|
GameTypeWatching
|
|
|
+ GameTypeCustom
|
|
|
)
|
|
|
|
|
|
|