diff options
author | megamage <none@none> | 2009-08-18 21:58:44 -0500 |
---|---|---|
committer | megamage <none@none> | 2009-08-18 21:58:44 -0500 |
commit | 69c3abfc0ba59d6f46050577d83481ea84e5055f (patch) | |
tree | 6a74c03e5d70bf7dd7773c8b2651e6917a462105 | |
parent | 9bd8f09978c1dbd5a8a58fc1cb169ac40886618a (diff) |
*Fix the bug that alliance players cannot use some dk flight nodes.
--HG--
branch : trunk
-rw-r--r-- | src/game/ObjectMgr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/ObjectMgr.cpp b/src/game/ObjectMgr.cpp index f1d21ef2c4d..e590408cef2 100644 --- a/src/game/ObjectMgr.cpp +++ b/src/game/ObjectMgr.cpp @@ -5210,7 +5210,7 @@ uint32 ObjectMgr::GetNearestTaxiNode( float x, float y, float z, uint32 mapid, u for(uint32 i = 1; i < sTaxiNodesStore.GetNumRows(); ++i) { TaxiNodesEntry const* node = sTaxiNodesStore.LookupEntry(i); - if(!node || node->map_id != mapid || !node->MountCreatureID[team == ALLIANCE ? 1 : 0]) + if(!node || node->map_id != mapid || !node->MountCreatureID[team == ALLIANCE ? 1 : 0] && node->MountCreatureID[0] != 32981) // dk flight continue; uint8 field = (uint8)((i - 1) / 32); |