Core: Updated to 10.2.5

Port From (https://github.com/TrinityCore/TrinityCore/commit/a4a4d010a0e329d4dbd82c0be5feab1fc06c8834)
This commit is contained in:
hondacrx
2024-02-06 13:07:17 -05:00
parent 1d13b710f9
commit d1ad9f662e
23 changed files with 1457 additions and 1337 deletions
+7 -7
View File
@@ -437,13 +437,13 @@ namespace Game.DataStorage
}
// Check loaded DB2 files proper version
if (!AreaTableStorage.ContainsKey(14720) || // last area added in 10.0.7 (48520)
!CharTitlesStorage.ContainsKey(762) || // last char title added in 10.0.7 (48520)
!GemPropertiesStorage.ContainsKey(4059) || // last gem property added in 10.0.7 (48520)
!ItemStorage.ContainsKey(205244) || // last item added in 10.0.7 (48520)
!ItemExtendedCostStorage.ContainsKey(8043) || // last item extended cost added in 10.0.7 (48520)
!MapStorage.ContainsKey(2616) || // last map added in 10.0.7 (48520)
!SpellNameStorage.ContainsKey(409033)) // last spell added in 10.0.7 (48520)
if (!AreaTableStorage.ContainsKey(15151) || // last area added in 10.2.5 (53007)
!CharTitlesStorage.ContainsKey(805) || // last char title added in 10.2.5 (53007)
!GemPropertiesStorage.ContainsKey(4081) || // last gem property added in 10.2.5 (53007)
!ItemStorage.ContainsKey(215160) || // last item added in 10.2.5 (53007)
!ItemExtendedCostStorage.ContainsKey(8510) || // last item extended cost added in 10.2.5 (53007)
!MapStorage.ContainsKey(2708) || // last map added in 10.2.5 (53007)
!SpellNameStorage.ContainsKey(438878)) // last spell added in 10.2.5 (53007)
{
Log.outFatal(LogFilter.ServerLoading, "You have _outdated_ DB2 files. Please extract correct versions from current using client.");
Environment.Exit(1);