Core/Entities: Use new PackedGuid class

This commit is contained in:
Shauren
2014-09-13 01:07:21 +02:00
parent 2fc52b5af6
commit ce67a097bf
28 changed files with 134 additions and 131 deletions
+3 -3
View File
@@ -361,11 +361,11 @@ public:
}
else if (type == "appitsguid")
{
data.append(unit->GetPackGUID());
data << unit->GetPackGUID();
}
else if (type == "appmyguid")
{
data.append(player->GetPackGUID());
data << player->GetPackGUID();
}
else if (type == "appgoguid")
{
@@ -377,7 +377,7 @@ public:
ifs.close();
return false;
}
data.append(obj->GetPackGUID());
data << obj->GetPackGUID();
}
else if (type == "goguid")
{