Jump to content

Anubisss2

Members
  • Posts

    2
  • Joined

  • Last visited

    Never
  • Donations

    0.00 GBP 

Everything posted by Anubisss2

  1. Rev/hash: r9203/dbb46f6a1b86b9c1cfcce014c8740852cf8f5783 What fix: Fix 2 mem leakz. Author: Anubisss Paste: http://pastebin.com/f19c8306 src/game/CharacterHandler.cpp | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/src/game/CharacterHandler.cpp b/src/game/CharacterHandler.cpp index 6d428f3..e118acd 100644 --- a/src/game/CharacterHandler.cpp +++ b/src/game/CharacterHandler.cpp @@ -359,6 +359,7 @@ void WorldSession::HandleCharCreateOpcode( WorldPacket & recv_data ) { data << (uint8)CHAR_CREATE_UNIQUE_CLASS_LIMIT; SendPacket( &data ); + delete result2; return; } } @@ -413,6 +414,7 @@ void WorldSession::HandleCharCreateOpcode( WorldPacket & recv_data ) { data << (uint8)CHAR_CREATE_UNIQUE_CLASS_LIMIT; SendPacket( &data ); + delete result2; return; } }
  2. What bug does the patch fix? What features does the patch add? As the Crow Flies For which repository revision was the patch created? 7809 Is there a thread in the bug report section or at lighthouse? Just in UDB's forum: - http://udbforums.org/index.php?topic=11993.0 - http://udbforums.org/index.php?topic=11436.0 Who has been writing this patch? Anubisss diff --git a/src/game/TaxiHandler.cpp b/src/game/TaxiHandler.cpp index 0450ccb..8eeafc9 100644 --- a/src/game/TaxiHandler.cpp +++ b/src/game/TaxiHandler.cpp -204,6 +204,10 @@ void WorldSession::HandleTaxiNextDestinationOpcode(WorldPacket& /*recv_data*/) if(!curDest) return; + // TaxiNode: 96 -> Zangarmarsh - Quest - As the Crow Flies - End | quest support: As the Crow Flies + if(curDest == 96 && GetPlayer()->GetQuestStatus(9718) == QUEST_STATUS_INCOMPLETE) + GetPlayer()->CompleteQuest(9718); + TaxiNodesEntry const* curDestNode = sTaxiNodesStore.LookupEntry(curDest); // far teleport case paste: http://pastebin.com/f2ca15b8b Its hackly a bit.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Privacy Policy Terms of Use