aboutsummaryrefslogtreecommitdiff
path: root/src/server/game/DungeonFinding/LFGMgr.cpp
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2017-11-18 20:12:12 +0100
committerShauren <shauren.trinity@gmail.com>2017-12-30 00:26:37 +0100
commit7bb62cd23de167788b4c3dc330cdf8b5baeddc8c (patch)
tree686870e52c47467a65a0b7686f14e2c10eae19b8 /src/server/game/DungeonFinding/LFGMgr.cpp
parent20a3c9eed2b201e36333a83e3b2d28d6f16d69bd (diff)
Core/DataStores: Updated db2 structures to 7.3.2.25480
Diffstat (limited to 'src/server/game/DungeonFinding/LFGMgr.cpp')
-rw-r--r--src/server/game/DungeonFinding/LFGMgr.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/server/game/DungeonFinding/LFGMgr.cpp b/src/server/game/DungeonFinding/LFGMgr.cpp
index 819a2c842fd..124929b3cc2 100644
--- a/src/server/game/DungeonFinding/LFGMgr.cpp
+++ b/src/server/game/DungeonFinding/LFGMgr.cpp
@@ -48,7 +48,7 @@ requiredItemLevel(0)
{
}
-LFGDungeonData::LFGDungeonData(LfgDungeonsEntry const* dbc) : id(dbc->ID), name(dbc->Name->Str[sWorld->GetDefaultDbcLocale()]), map(dbc->MapID),
+LFGDungeonData::LFGDungeonData(LFGDungeonsEntry const* dbc) : id(dbc->ID), name(dbc->Name->Str[sWorld->GetDefaultDbcLocale()]), map(dbc->MapID),
type(uint8(dbc->Type)), expansion(uint8(dbc->Expansion)), group(uint8(dbc->GroupID)),
minlevel(uint8(dbc->MinLevel)), maxlevel(uint8(dbc->MaxLevel)), difficulty(Difficulty(dbc->DifficultyID)),
seasonal((dbc->Flags & LFG_FLAG_SEASONAL) != 0), x(0.0f), y(0.0f), z(0.0f), o(0.0f),
@@ -193,9 +193,9 @@ void LFGMgr::LoadLFGDungeons(bool reload /* = false */)
LfgDungeonStore.clear();
// Initialize Dungeon map with data from dbcs
- for (uint32 i = 0; i < sLfgDungeonsStore.GetNumRows(); ++i)
+ for (uint32 i = 0; i < sLFGDungeonsStore.GetNumRows(); ++i)
{
- LfgDungeonsEntry const* dungeon = sLfgDungeonsStore.LookupEntry(i);
+ LFGDungeonsEntry const* dungeon = sLFGDungeonsStore.LookupEntry(i);
if (!dungeon)
continue;