Skip to content

Commit

Permalink
feat(VoiceState): add self_stream field (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
SpaceEEC authored Sep 13, 2019
1 parent 21b008b commit d0ffb0a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/structs/voice_state.ex
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ defmodule Crux.Structs.VoiceState do
mute: nil,
self_deaf: nil,
self_mute: nil,
# Only present if true
self_stream: false,
# Can bots even do that?
suppress: nil
)
Expand All @@ -34,6 +36,7 @@ defmodule Crux.Structs.VoiceState do
mute: boolean(),
self_deaf: boolean(),
self_mute: boolean(),
self_stream: boolean(),
suppress: boolean()
}

Expand Down

0 comments on commit d0ffb0a

Please sign in to comment.