diff options
author | megamage <none@none> | 2009-02-18 17:21:06 -0600 |
---|---|---|
committer | megamage <none@none> | 2009-02-18 17:21:06 -0600 |
commit | d344d4b6e9f6fef6592405ecf039b400fad55162 (patch) | |
tree | dc4e66c0e3c3e565d38e690982525b79e9d8dae3 /src/shared/Database/DBCStores.cpp | |
parent | 230a70745f342f8c8a6232cd57a5520830bfe10c (diff) |
[7298] Switch to support client 3.0.9 (3551). Author: VladimirMangos
--HG--
branch : trunk
Diffstat (limited to 'src/shared/Database/DBCStores.cpp')
-rw-r--r-- | src/shared/Database/DBCStores.cpp | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/src/shared/Database/DBCStores.cpp b/src/shared/Database/DBCStores.cpp index 54e71d2cbf0..515b17b495b 100644 --- a/src/shared/Database/DBCStores.cpp +++ b/src/shared/Database/DBCStores.cpp @@ -505,14 +505,13 @@ void LoadDBCStores(const std::string& dataPath) } // Check loaded DBC files proper version - if( !sSpellStore.LookupEntry(54909) || // last added spell in 3.0.8a - !sSpellStore.LookupEntry(49184) || // last added spell in 3.0.8a - sSpellStore.LookupEntry(49184)->RecoveryTime!=5000||// last changed spell in 3.0.8a - !sMapStore.LookupEntry(624) || // last map added in 3.0.8a - !sGemPropertiesStore.LookupEntry(1557) || // last gem property added in 3.0.8a - !sItemExtendedCostStore.LookupEntry(2589) || // last item extended cost added in 3.0.8a - !sCharTitlesStore.LookupEntry(144) || // last char title added in 3.0.8a - !sAreaStore.LookupEntry(2769) ) // last area (areaflag) added in 3.0.8a + if( !sSpellStore.LookupEntry(62735) || // last added spell in 3.0.9 + !sMapStore.LookupEntry(624) || // last map added in 3.0.8a/3.0.9 + !sGemPropertiesStore.LookupEntry(1557) || // last gem property added in 3.0.8a/3.0.9 + !sItemExtendedCostStore.LookupEntry(2589) || // last item extended cost added in 3.0.8a/3.0.9 + !sCharTitlesStore.LookupEntry(144) || // last char title added in 3.0.8a/3.0.9 + !sAreaStore.LookupEntry(2769) || // last area (areaflag) added in 3.0.8a/3.0.9 + !sItemStore.LookupEntry(45037) ) // last client known item added in 3.0.9 { sLog.outError("\nYou have _outdated_ DBC files. Please extract correct versions from current using client."); exit(1); |