diff options
| author | Subv <s.v.h21@hotmail.com> | 2012-08-09 18:46:59 -0500 |
|---|---|---|
| committer | Subv <s.v.h21@hotmail.com> | 2012-08-09 18:46:59 -0500 |
| commit | 99d4a1093b712d8e6a1c82b2170b921f4f66b571 (patch) | |
| tree | 97fcddb69e13aed8acc47298b925dd9854023e56 /src/server/game/Handlers/TaxiHandler.cpp | |
| parent | 0b10cc40c2546c156756fff76d11e72e25f5d261 (diff) | |
Core/PacketIO: Enabled/Fixed more opcodes
Diffstat (limited to 'src/server/game/Handlers/TaxiHandler.cpp')
| -rwxr-xr-x | src/server/game/Handlers/TaxiHandler.cpp | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/server/game/Handlers/TaxiHandler.cpp b/src/server/game/Handlers/TaxiHandler.cpp index 16ffdfbc440..175ea28a424 100755 --- a/src/server/game/Handlers/TaxiHandler.cpp +++ b/src/server/game/Handlers/TaxiHandler.cpp @@ -28,7 +28,7 @@ #include "Path.h" #include "WaypointMovementGenerator.h" -void WorldSession::HandleTaxiNodeStatusQueryOpcode(WorldPacket & recvData) +void WorldSession::HandleTaxiNodeStatusQueryOpcode(WorldPacket& recvData) { sLog->outDebug(LOG_FILTER_NETWORKIO, "WORLD: Received CMSG_TAXINODE_STATUS_QUERY"); @@ -63,7 +63,7 @@ void WorldSession::SendTaxiStatus(uint64 guid) sLog->outDebug(LOG_FILTER_NETWORKIO, "WORLD: Sent SMSG_TAXINODE_STATUS"); } -void WorldSession::HandleTaxiQueryAvailableNodes(WorldPacket & recvData) +void WorldSession::HandleTaxiQueryAvailableNodes(WorldPacket& recvData) { sLog->outDebug(LOG_FILTER_NETWORKIO, "WORLD: Received CMSG_TAXIQUERYAVAILABLENODES"); @@ -199,14 +199,11 @@ void WorldSession::HandleMoveSplineDoneOpcode(WorldPacket& recvData) { sLog->outDebug(LOG_FILTER_NETWORKIO, "WORLD: Received CMSG_MOVE_SPLINE_DONE"); - uint64 guid; // used only for proper packet read - recvData.readPackGUID(guid); - + recvData.read_skip<uint32>(); // unk + MovementInfo movementInfo; // used only for proper packet read ReadMovementInfo(recvData, &movementInfo); - recvData.read_skip<uint32>(); // unk - // in taxi flight packet received in 2 case: // 1) end taxi path in far (multi-node) flight // 2) switch from one map to other in case multim-map taxi path |
