mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Fix #143 /muteUniverse on dyn universe channels
This commit is contained in:
parent
0cd3ea8d3b
commit
ca79af60c6
1 changed files with 2 additions and 2 deletions
|
@ -477,9 +477,9 @@ void CChatManager::chat( const TDataSetRow& sender, const ucstring& ucstr )
|
||||||
{
|
{
|
||||||
// if( itCl->second->isMuted() )
|
// if( itCl->second->isMuted() )
|
||||||
CEntityId eid = TheDataset.getEntityId(sender);
|
CEntityId eid = TheDataset.getEntityId(sender);
|
||||||
if(_MutedUsers.find( eid ) != _MutedUsers.end())
|
if(_MutedUniverseUsers.find( eid ) != _MutedUniverseUsers.end())
|
||||||
{
|
{
|
||||||
nldebug("IOSCM: chat The player %s:%x is muted",
|
nldebug("IOSCM: chat The player %s:%x is universe muted",
|
||||||
TheDataset.getEntityId(sender).toString().c_str(),
|
TheDataset.getEntityId(sender).toString().c_str(),
|
||||||
sender.getIndex());
|
sender.getIndex());
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue