diff options
Diffstat (limited to 'src/game/DBCStores.cpp')
-rw-r--r-- | src/game/DBCStores.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/game/DBCStores.cpp b/src/game/DBCStores.cpp index 1b487262c13..f6f25267db6 100644 --- a/src/game/DBCStores.cpp +++ b/src/game/DBCStores.cpp @@ -554,13 +554,13 @@ void LoadDBCStores(const std::string& dataPath) } // Check loaded DBC files proper version - if (!sSpellStore.LookupEntry(74445) || // last added spell in 3.3.2 - !sMapStore.LookupEntry(718) || // last map added in 3.3.2 - !sGemPropertiesStore.LookupEntry(1629) || // last gem property added in 3.3.2 - !sItemExtendedCostStore.LookupEntry(2982) || // last item extended cost added in 3.3.2 - !sCharTitlesStore.LookupEntry(177) || // last char title added in 3.3.2 - !sAreaStore.LookupEntry(3461) || // last area (areaflag) added in 3.3.2 - !sItemStore.LookupEntry(52686)) // last client known item added in 3.3.2 + if (!sAreaStore.LookupEntry(3617) || // last area (areaflag) added in 3.3.3a + !sCharTitlesStore.LookupEntry(177) || // last char title added in 3.3.3a + !sGemPropertiesStore.LookupEntry(1629) || // last added spell in 3.3.3a + !sItemStore.LookupEntry(54860) || // last gem property added in 3.3.3a + !sItemExtendedCostStore.LookupEntry(2997) || // last item extended cost added in 3.3.3a + !sMapStore.LookupEntry(724) || // last map added in 3.3.3a + !sSpellStore.LookupEntry(76567) ) // last client known item added in 3.3.3a { sLog.outError("\nYou have _outdated_ DBC files. Please extract correct versions from current using client."); exit(1); |