Core/Entities: Removed Object::GetGUIDLow()

This commit is contained in:
Shauren
2014-10-23 00:29:16 +02:00
parent cffbcea877
commit a97bd333fe
9 changed files with 66 additions and 54 deletions
+2 -2
View File
@@ -1265,13 +1265,13 @@ public:
{
value = unit->GetUInt32Value(updateIndex);
handler->PSendSysMessage(LANG_UPDATE, unit->GetGUIDLow(), updateIndex, value);
handler->PSendSysMessage(LANG_UPDATE, unit->GetGUID().ToString().c_str(), updateIndex, value);
return true;
}
value = atoi(val);
handler->PSendSysMessage(LANG_UPDATE_CHANGE, unit->GetGUIDLow(), updateIndex, value);
handler->PSendSysMessage(LANG_UPDATE_CHANGE, unit->GetGUID().ToString().c_str(), updateIndex, value);
unit->SetUInt32Value(updateIndex, value);