Core/DBCs: Fix "Uncategorized taxi error" in Shadow Vault flight master

Closes #4999
This a bit "hackish", a proper fix for both flight masters (Ebon Hold and Shadow Vault) should be found
This commit is contained in:
Merlin2010
2012-02-08 20:50:58 +00:00
committed by Nay
parent 7a8782c52c
commit 101b461c7c

View File

@@ -584,10 +584,9 @@ void LoadDBCStores(const std::string& dataPath)
if (node->map_id < 2 || i == 82 || i == 83 || i == 93 || i == 94)
sOldContinentsNodesMask[field] |= submask;
// fix DK node at Ebon Hold
if (i == 315) {
// fix DK node at Ebon Hold and Shadow Vault flight master
if (i == 315 || i == 333)
((TaxiNodesEntry*)node)->MountCreatureID[1] = 32981;
}
}
}