Skip to content

Commit

Permalink
BREAKING CHANGE: Video Mute now uses joins 21 - 23 to match exsistin …
Browse files Browse the repository at this point in the history
…essentials join map, previously used 5 - 7
  • Loading branch information
jtalborough committed Jul 21, 2021
1 parent 163ae2d commit 7e52426
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/JoinMap.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public class JoinMap : JoinMapBaseAdvanced
public JoinDataComplete MuteOff = new JoinDataComplete(
new JoinData()
{
JoinNumber = 5,
JoinNumber = 21,
JoinSpan = 1
},
new JoinMetadata()
Expand All @@ -78,7 +78,7 @@ public class JoinMap : JoinMapBaseAdvanced
public JoinDataComplete MuteOn = new JoinDataComplete(
new JoinData()
{
JoinNumber = 6,
JoinNumber = 22,
JoinSpan = 1
},
new JoinMetadata()
Expand All @@ -92,7 +92,7 @@ public class JoinMap : JoinMapBaseAdvanced
public JoinDataComplete MuteToggle = new JoinDataComplete(
new JoinData()
{
JoinNumber = 7,
JoinNumber = 23,
JoinSpan = 1
},
new JoinMetadata()
Expand Down

0 comments on commit 7e52426

Please sign in to comment.