Core/PacketIO: Fixed build for gcc

thanks @Shauren
This commit is contained in:
vincent-michael
2017-05-20 10:11:56 +02:00
parent f2039981e0
commit 6a405f8162
3 changed files with 4 additions and 4 deletions

View File

@@ -594,7 +594,7 @@ namespace WorldPackets
ObjectGuid TargetObjectGUID;
ObjectGuid SourceObjectGUID;
int32 SoundKitID = 0;
TaggedPosition<Position::XYZ> Position;
TaggedPosition<::Position::XYZ> Position;
};
class TC_GAME_API PlaySound final : public ServerPacket

View File

@@ -232,7 +232,7 @@ namespace WorldPackets
ObjectGuid Player;
ObjectGuid Transport;
TaggedPosition<Position::XYZ> Position;
TaggedPosition<::Position::XYZ> Position;
int32 ActualMapID = 0;
int32 MapID = 0;
bool Valid = false;
@@ -257,7 +257,7 @@ namespace WorldPackets
WorldPacket const* Write() override;
ObjectGuid Player;
TaggedPosition<Position::XYZ> Position;
TaggedPosition<::Position::XYZ> Position;
float Facing = 0.0f;
};

View File

@@ -30,7 +30,7 @@ namespace WorldPackets
struct SupportTicketHeader
{
int32 MapID = 0;
TaggedPosition<Position::XYZ> Position;
TaggedPosition<::Position::XYZ> Position;
float Facing = 0.0f;
};