Guest User

Anubisss

a guest
May 10th, 2009
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.64 KB | None | 0 0
  1. diff --git a/src/game/TaxiHandler.cpp b/src/game/TaxiHandler.cpp
  2. index 0450ccb..8eeafc9 100644
  3. --- a/src/game/TaxiHandler.cpp
  4. +++ b/src/game/TaxiHandler.cpp
  5. @@ -204,6 +204,10 @@ void WorldSession::HandleTaxiNextDestinationOpcode(WorldPacket& /*recv_data*/)
  6.      if(!curDest)
  7.          return;
  8.  
  9. +    // TaxiNode: 96 -> Zangarmarsh - Quest - As the Crow Flies - End | quest support: As the Crow Flies
  10. +    if(curDest == 96 && GetPlayer()->GetQuestStatus(9718) == QUEST_STATUS_INCOMPLETE)
  11. +        GetPlayer()->CompleteQuest(9718);
  12. +
  13.      TaxiNodesEntry const* curDestNode = sTaxiNodesStore.LookupEntry(curDest);
  14.  
  15.      // far teleport case
  16.  
Advertisement
Add Comment
Please, Sign In to add comment