Core/ChatHandler: Fix for config mute. (#272)

This commit is contained in:
HeartWell
2016-12-02 21:09:17 +03:00
committed by Francesco Borzì
parent 09419e53b8
commit 440b7e731f

View File

@@ -66,7 +66,7 @@ void WorldSession::HandleMessagechatOpcode(WorldPacket & recvData)
case CHAT_MSG_PARTY_LEADER:
break;
default:
if (!sWorld->getBoolConfig(CONFIG_CHAT_MUTE_FIRST_LOGIN))
if (sWorld->getBoolConfig(CONFIG_CHAT_MUTE_FIRST_LOGIN))
{
uint32 minutes = sWorld->getIntConfig(CONFIG_CHAT_TIME_MUTE_FIRST_LOGIN);