forked from pothtonswer/discordmuffin
Merge pull request #679 from JurrijnP/develop
Add Premium Guild Subscription message types & Add Channel Types.
This commit is contained in:
commit
1d90c5da95
2 changed files with 7 additions and 0 deletions
|
@ -28,6 +28,11 @@ const (
|
||||||
MessageTypeChannelIconChange
|
MessageTypeChannelIconChange
|
||||||
MessageTypeChannelPinnedMessage
|
MessageTypeChannelPinnedMessage
|
||||||
MessageTypeGuildMemberJoin
|
MessageTypeGuildMemberJoin
|
||||||
|
MessageTypeUserPremiumGuildSubscription
|
||||||
|
MessageTypeUserPremiumGuildSubscriptionTierOne
|
||||||
|
MessageTypeUserPremiumGuildSubscriptionTierTwo
|
||||||
|
MessageTypeUserPremiumGuildSubscriptionTierThree
|
||||||
|
MessageTypeChannelFollowAdd
|
||||||
)
|
)
|
||||||
|
|
||||||
// A Message stores all data related to a specific Discord message.
|
// A Message stores all data related to a specific Discord message.
|
||||||
|
|
|
@ -200,6 +200,8 @@ const (
|
||||||
ChannelTypeGuildVoice
|
ChannelTypeGuildVoice
|
||||||
ChannelTypeGroupDM
|
ChannelTypeGroupDM
|
||||||
ChannelTypeGuildCategory
|
ChannelTypeGuildCategory
|
||||||
|
ChannelTypeGuildNews
|
||||||
|
ChannelTypeGuildStore
|
||||||
)
|
)
|
||||||
|
|
||||||
// A Channel holds all data related to an individual Discord channel.
|
// A Channel holds all data related to an individual Discord channel.
|
||||||
|
|
Loading…
Reference in a new issue