Update to 5.4.8 (18414)

This commit is contained in:
zamalaev 2020-02-19 15:35:33 +00:00 committed by Antz
parent 7d6551c5eb
commit d5e65aa08f
2 changed files with 8 additions and 8 deletions

View file

@ -136,9 +136,9 @@ void LoadDB2Stores(const std::string& dataPath)
}
// Check loaded DB2 files proper version
if (!sItemStore.LookupEntry(109014) || // last item added in 5.4.7 (18019)
!sItemExtendedCostStore.LookupEntry(5268) || // last item extended cost added in 5.4.7 (18019)
!sSceneScriptStore.LookupEntry(11156) ) // last scene script added in 5.4.7 (18019)
if (!sItemStore.LookupEntry(112353) || // last item added in 5.4.8 (18414)
!sItemExtendedCostStore.LookupEntry(5280) || // last item extended cost added in 5.4.8 (18414)
!sSceneScriptStore.LookupEntry(11156) ) // last scene script added in 5.4.8 (18414)
{
sLog.outString("");
sLog.outError("Please extract correct db2 files from build %s", AcceptableClientBuildsListStr().c_str());

View file

@ -907,11 +907,11 @@ void LoadDBCStores(const std::string& dataPath)
}
// Check loaded DBC files proper version
if (!sAreaStore.LookupEntry(5491) || // last area (areaflag) added in 5.4.7 (18019)
!sCharTitlesStore.LookupEntry(389) || // last char title added in 5.4.7 (18019)
!sGemPropertiesStore.LookupEntry(2467) || // last gem property added in 5.4.7 (18019)
!sMapStore.LookupEntry(1173) || // last map added in 5.4.7 (18019)
!sSpellStore.LookupEntry(155748) ) // last added spell in 5.4.7 (18019)
if (!sAreaStore.LookupEntry(5491) || // last area (areaflag) added in 5.4.8 (18414)
!sCharTitlesStore.LookupEntry(389) || // last char title added in 5.4.8 (18414)
!sGemPropertiesStore.LookupEntry(2467) || // last gem property added in 5.4.8 (18414)
!sMapStore.LookupEntry(1173) || // last map added in 5.4.8 (18414)
!sSpellStore.LookupEntry(163227) ) // last added spell in 5.4.8 (18414)
{
sLog.outError("\nYou have mixed version DBC files. Please re-extract DBC files for one from client build: %s", AcceptableClientBuildsListStr().c_str());
Log::WaitBeforeContinueIfNeed();