-
-
Notifications
You must be signed in to change notification settings - Fork 132
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(model, gateway): add support for VOICE_CHANNEL_EFFECT_SEND
event
#2187
base: main
Are you sure you want to change the base?
feat(model, gateway): add support for VOICE_CHANNEL_EFFECT_SEND
event
#2187
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's not obvious to me if will be documented (i.e. if it's useful for bots). Maybe the fact that the PRs opened by advaith1 is proof enough.
Anyway, as always this looks very good. Impressive that you wrote it so quickly.
/// Webhook in a guild has been updated. | ||
const WEBHOOKS_UPDATE = 1 << 44; | ||
const WEBHOOKS_UPDATE = 1 << 45; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
extra space
} | ||
|
||
#[derive(Clone, Debug, Deserialize, Eq, Hash, PartialEq, Serialize)] | ||
pub enum VoiceChannelEffectAnimationType { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Always has to place items, should this be under the voice
module? Hard to say
Adds support for the
VOICE_CHANNEL_EFFECT_SEND
event. This event is fired when a user sends a soundboard sound uses the shared canvas or uses an emoji reaction.Ref:
Needs testing