Skip to content

Commit

Permalink
Fixed unreaded packet spam for CMSG_MOVE_FEATHER_FALL_ACK
Browse files Browse the repository at this point in the history
  • Loading branch information
VladimirMangos committed Dec 15, 2009
1 parent ac96319 commit fe7a71e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/game/MiscHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1026,9 +1026,12 @@ void WorldSession::HandleMoveTimeSkippedOpcode( WorldPacket & recv_data )
*/
}

void WorldSession::HandleFeatherFallAck(WorldPacket &/*recv_data*/)
void WorldSession::HandleFeatherFallAck(WorldPacket &recv_data)
{
DEBUG_LOG("WORLD: CMSG_MOVE_FEATHER_FALL_ACK");

// no used
recv_data.rpos(recv_data.wpos()); // prevent warnings spam
}

void WorldSession::HandleMoveUnRootAck(WorldPacket& recv_data)
Expand Down

0 comments on commit fe7a71e

Please sign in to comment.