diff options
-rw-r--r-- | src/game/DBCStores.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/game/DBCStores.cpp b/src/game/DBCStores.cpp index 20d82968fea..fb96c37028b 100644 --- a/src/game/DBCStores.cpp +++ b/src/game/DBCStores.cpp @@ -491,6 +491,11 @@ void LoadDBCStores(const std::string& dataPath) // old continent node (+ nodes virtually at old continents, check explicitly to avoid loading map files for zone info) 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) { + ((TaxiNodesEntry*)node)->MountCreatureID[1] = 32981; + } } } |