Core/DataStores: Fixed db2 structures after 7.3.5

This commit is contained in:
hondacrx
2018-03-13 15:43:03 -04:00
parent 2199e07955
commit 0ab3b8e8cd
97 changed files with 3139 additions and 1707 deletions
+3 -3
View File
@@ -177,7 +177,7 @@ namespace Game.DungeonFinding
// Initialize Dungeon map with data from dbcs
foreach (var dungeon in CliDB.LFGDungeonsStorage.Values)
{
switch (dungeon.Type)
switch (dungeon.TypeID)
{
case LfgType.Dungeon:
case LfgType.Raid:
@@ -2151,8 +2151,8 @@ namespace Game.DungeonFinding
id = dbc.Id;
name = dbc.Name[Global.WorldMgr.GetDefaultDbcLocale()];
map = (uint)dbc.MapID;
type = dbc.Type;
expansion = dbc.Expansion;
type = dbc.TypeID;
expansion = dbc.ExpansionLevel;
group = dbc.GroupID;
minlevel = dbc.MinLevel;
maxlevel = dbc.MaxLevel;