Propertly send SMSG_SET_PHASE_SHIFT to inform client about phase shift at phase change. Author: GriffonHeart

--HG--
branch : trunk
This commit is contained in:
megamage
2009-02-15 12:13:34 -06:00
parent 9635284494
commit ff63eece3c
6 changed files with 22 additions and 0 deletions

View File

@@ -649,3 +649,13 @@ bool ChatHandler::HandleSendLargePacketCommand(const char* args)
SendSysMessage(ss.str().c_str());
return true;
}
bool ChatHandler::HandleSendSetPhaseShiftCommand(const char* args)
{
if(!args)
return false;
uint32 PhaseShift = atoi(args);
m_session->SendSetPhaseShift(PhaseShift);
return true;
}