mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Merge with develop
This commit is contained in:
parent
500e3fd4de
commit
1a5ac4b839
1 changed files with 2 additions and 2 deletions
|
@ -488,7 +488,7 @@ 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(_MutedUniverseUsers.find( eid ) != _MutedUniverseUsers.end())
|
if(_MutedUsers.find( eid ) != _MutedUsers.end())
|
||||||
{
|
{
|
||||||
nldebug("IOSCM: chat The player %s:%x is universe muted",
|
nldebug("IOSCM: chat The player %s:%x is universe muted",
|
||||||
TheDataset.getEntityId(sender).toString().c_str(),
|
TheDataset.getEntityId(sender).toString().c_str(),
|
||||||
|
@ -650,7 +650,7 @@ void CChatManager::chat( const TDataSetRow& sender, const ucstring& ucstr )
|
||||||
// If universal channel check if player muted
|
// If universal channel check if player muted
|
||||||
if (session->getChan()->UniversalChannel)
|
if (session->getChan()->UniversalChannel)
|
||||||
{
|
{
|
||||||
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 muted",
|
||||||
TheDataset.getEntityId(sender).toString().c_str(),
|
TheDataset.getEntityId(sender).toString().c_str(),
|
||||||
|
|
Loading…
Reference in a new issue