Skip to content

Commit

Permalink
(ignore) code formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michel Bagnol committed Jun 27, 2019
1 parent 116baa4 commit 82e2ab8
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions MumbleSharp/Model/User.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,13 @@ public void Move(Channel channel)
/// </summary>
public void SendUserState()
{
UserState userstate = new UserState();
userstate.Actor = this.Id;
userstate.ChannelId = this.ChannelId;
userstate.SelfMute = this.SelfMuted;
userstate.SelfDeaf = this.SelfDeaf;
_owner.Connection.SendControl<UserState>(PacketType.UserState, userstate);
_owner.Connection.SendControl<UserState>(PacketType.UserState, new UserState()
{
Actor = this.Id,
ChannelId = this.ChannelId,
SelfMute = this.SelfMuted,
SelfDeaf = this.SelfDeaf,
});
}

protected internal IVoiceCodec GetCodec(SpeechCodecs codec)
Expand Down

0 comments on commit 82e2ab8

Please sign in to comment.