Apply style fix

This commit is contained in:
Antz 2020-01-10 23:13:44 +00:00
parent 5531a0087d
commit 35405dd549
155 changed files with 10968 additions and 3660 deletions

View file

@ -243,13 +243,19 @@ void WorldSession::HandleMessagechatOpcode(WorldPacket& recv_data)
msg = recv_data.ReadString(msgLength);
if (msg.empty())
{ break; }
{
break;
}
if (ChatHandler(this).ParseCommands(msg.c_str()))
{ break; }
{
break;
}
if (!processChatmessageFurtherAfterSecurityChecks(msg, lang))
{ return; }
{
return;
}
if (!normalizePlayerName(to))
{