diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/realmd/AuthCodes.h | 4 | ||||
-rw-r--r-- | src/shared/Database/DBCStores.cpp | 15 | ||||
-rw-r--r-- | src/shared/revision_nr.h | 2 |
3 files changed, 10 insertions, 11 deletions
diff --git a/src/realmd/AuthCodes.h b/src/realmd/AuthCodes.h index 3745c6c6214..9a38712af83 100644 --- a/src/realmd/AuthCodes.h +++ b/src/realmd/AuthCodes.h @@ -68,8 +68,8 @@ enum LoginResult // we need to stick to 1 version or half of the stuff will work for someone // others will not and opposite -// will only support WoW, WoW:TBC and WoW:WotLK 3.0.8 client build 9506... +// will only support WoW, WoW:TBC and WoW:WotLK 3.0.9 client build 9551... -#define EXPECTED_TRINITY_CLIENT_BUILD {9506, 0} +#define EXPECTED_TRINITY_CLIENT_BUILD {9551, 0} #endif 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); diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index d3ad3d5541d..f01c8e39d62 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "7297" + #define REVISION_NR "7298" #endif // __REVISION_NR_H__ |