From d5e65aa08f32b7445abcf3b50c0ef8230ac8b326 Mon Sep 17 00:00:00 2001 From: zamalaev Date: Wed, 19 Feb 2020 15:35:33 +0000 Subject: [PATCH] Update to 5.4.8 (18414) --- src/game/Server/DB2Stores.cpp | 6 +++--- src/game/Server/DBCStores.cpp | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/game/Server/DB2Stores.cpp b/src/game/Server/DB2Stores.cpp index 44ba334d0..79197cb4d 100644 --- a/src/game/Server/DB2Stores.cpp +++ b/src/game/Server/DB2Stores.cpp @@ -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()); diff --git a/src/game/Server/DBCStores.cpp b/src/game/Server/DBCStores.cpp index af9c96426..9c8d98db7 100644 --- a/src/game/Server/DBCStores.cpp +++ b/src/game/Server/DBCStores.cpp @@ -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();