diff options
author | megamage <none@none> | 2009-01-30 19:22:49 -0600 |
---|---|---|
committer | megamage <none@none> | 2009-01-30 19:22:49 -0600 |
commit | 1707d1e5aec42d521eb986520a93a008e1c1fce0 (patch) | |
tree | 532acf4fb8896eac30ec281c7f51b006d465227c /src/shared/Database/DBCStores.cpp | |
parent | 0c40d01c7f92e5255c3a9592735041bcb21717c1 (diff) |
*Switch to 3.0.8.
*Update to Mangos 1119.
--HG--
branch : trunk
Diffstat (limited to 'src/shared/Database/DBCStores.cpp')
-rw-r--r-- | src/shared/Database/DBCStores.cpp | 23 |
1 files changed, 9 insertions, 14 deletions
diff --git a/src/shared/Database/DBCStores.cpp b/src/shared/Database/DBCStores.cpp index b9515713e8e..5d8d1720542 100644 --- a/src/shared/Database/DBCStores.cpp +++ b/src/shared/Database/DBCStores.cpp @@ -500,20 +500,15 @@ void LoadDBCStores(const std::string& dataPath) exit(1); } - // check at up-to-date DBC files (54909 is last added spell in 3.0.1) - // check at up-to-date DBC files (19162 is last added spell in abilities in 3.0.1) - // check at up-to-date DBC files (619 is last map added in 3.0.1) - // check at up-to-date DBC files (1361 is last gem property added in 3.0.1) - // check at up-to-date DBC files (2425 is last item extended cost added in 3.0.1) - // check at up-to-date DBC files (76 is last char title added in 3.0.1) - // check at up-to-date DBC files (2311 is last area added in 3.0.1) - if( !sSpellStore.LookupEntry(54909) || - !sSkillLineAbilityStore.LookupEntry(19162) || - !sMapStore.LookupEntry(619) || - !sGemPropertiesStore.LookupEntry(1361) || - !sItemExtendedCostStore.LookupEntry(2425) || - !sCharTitlesStore.LookupEntry(76) || - !sAreaStore.LookupEntry(2311) ) + // 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 { sLog.outError("\nYou have _outdated_ DBC files. Please extract correct versions from current using client."); exit(1); |