Change many uint32 to ObjectGuid::LowType in line with 6.x changes.

This commit is contained in:
pete318
2015-10-11 00:17:46 +01:00
parent f179c4180f
commit b1032ed620
81 changed files with 428 additions and 426 deletions

View File

@@ -118,7 +118,7 @@ void LoadHelper(CellGuidSet const& guid_set, CellCoord &cell, GridRefManager<T>
for (CellGuidSet::const_iterator i_guid = guid_set.begin(); i_guid != guid_set.end(); ++i_guid)
{
T* obj = new T;
uint32 guid = *i_guid;
ObjectGuid::LowType guid = *i_guid;
//TC_LOG_INFO("misc", "DEBUG: LoadHelper from table: %s for (guid: %u) Loading", table, guid);
if (!obj->LoadFromDB(guid, map))
{