feat(Core/Movement): Implement move time skipped handler (#1433)

This commit is contained in:
Viste(Кирилл)
2019-03-03 14:10:43 +03:00
committed by GitHub
parent be3abe21d9
commit 4177c05ce3
2 changed files with 34 additions and 8 deletions

View File

@@ -1136,14 +1136,6 @@ void WorldSession::HandleNextCinematicCamera(WorldPacket & /*recv_data*/)
#endif
}
void WorldSession::HandleMoveTimeSkippedOpcode(WorldPacket & recv_data)
{
uint64 guid;
uint32 time_skipped;
recv_data.readPackGUID(guid);
recv_data >> time_skipped;
}
void WorldSession::HandleFeatherFallAck(WorldPacket &recv_data)
{
#if defined(ENABLE_EXTRAS) && defined(ENABLE_EXTRA_LOGS)