mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-24 10:56:38 +01:00
Warning fix
This commit is contained in:
@@ -423,11 +423,11 @@ namespace WorldPackets
|
||||
{
|
||||
public:
|
||||
StandStateUpdate() : ServerPacket(SMSG_STAND_STATE_UPDATE, 4 + 1) { }
|
||||
StandStateUpdate(UnitStandStateType state, uint32 animKitID) : ServerPacket(SMSG_STAND_STATE_UPDATE, 4 + 1), State(state), AnimKitID(animKitID) { }
|
||||
StandStateUpdate(UnitStandStateType state, uint32 animKitID) : ServerPacket(SMSG_STAND_STATE_UPDATE, 4 + 1), AnimKitID(animKitID), State(state) { }
|
||||
|
||||
WorldPacket const* Write() override;
|
||||
|
||||
uint32 AnimKitID = 0; /// @todo 6.1.0 resarch new value
|
||||
uint32 AnimKitID = 0;
|
||||
UnitStandStateType State = UNIT_STAND_STATE_STAND;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user