mirror of
https://github.com/mangosfour/server.git
synced 2025-12-26 07:37:02 +00:00
Update checks DBC loading.
This commit is contained in:
parent
11b88ad5bb
commit
be26ee974f
1 changed files with 7 additions and 7 deletions
|
|
@ -481,13 +481,13 @@ void LoadDBCStores(const std::string& dataPath)
|
|||
}
|
||||
|
||||
// Check loaded DBC files proper version
|
||||
if( !sSpellStore.LookupEntry(65509) || // last added spell in 3.1.1
|
||||
!sMapStore.LookupEntry(624) || // last map added in 3.1.1
|
||||
!sGemPropertiesStore.LookupEntry(1609) || // last gem property added in 3.1.1
|
||||
!sItemExtendedCostStore.LookupEntry(2670) || // last item extended cost added in 3.1.1
|
||||
!sCharTitlesStore.LookupEntry(166) || // last char title added in 3.1.1
|
||||
!sAreaStore.LookupEntry(2905) || // last area (areaflag) added in 3.1.1
|
||||
!sItemStore.LookupEntry(46379) ) // last client known item added in 3.1.1
|
||||
if( !sSpellStore.LookupEntry(66530) || // last added spell in 3.1.3
|
||||
!sMapStore.LookupEntry(624) || // last map added in 3.1.3
|
||||
!sGemPropertiesStore.LookupEntry(1609) || // last gem property added in 3.1.3
|
||||
!sItemExtendedCostStore.LookupEntry(2671) || // last item extended cost added in 3.1.3
|
||||
!sCharTitlesStore.LookupEntry(166) || // last char title added in 3.1.3
|
||||
!sAreaStore.LookupEntry(2905) || // last area (areaflag) added in 3.1.3
|
||||
!sItemStore.LookupEntry(46894) ) // last client known item added in 3.1.3
|
||||
{
|
||||
sLog.outError("\nYou have _outdated_ DBC files. Please extract correct versions from current using client.");
|
||||
exit(1);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue