mirror of
https://github.com/araxiaonline/TrinityCore.git
synced 2026-06-21 23:38:54 -04:00
Core/Entities: Use new PackedGuid class
This commit is contained in:
@@ -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")
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user