bug fix: "added an indicator that another client has muted me" does not work as expected
This commit is contained in:
parent
7a7cfe53fe
commit
be04c665ff
1 changed files with 2 additions and 2 deletions
|
@ -1321,10 +1321,10 @@ void CServer::CreateOtherMuteStateChanged ( const int iCurChanID,
|
|||
const int iOtherChanID,
|
||||
const bool bIsMuted )
|
||||
{
|
||||
if ( vecChannels[iCurChanID].IsConnected() )
|
||||
if ( vecChannels[iOtherChanID].IsConnected() )
|
||||
{
|
||||
// send message
|
||||
vecChannels[iCurChanID].CreateMuteStateHasChangedMes ( iOtherChanID, bIsMuted );
|
||||
vecChannels[iOtherChanID].CreateMuteStateHasChangedMes ( iCurChanID, bIsMuted );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue