Core/PacketIO: Updated packet structures to 9.2.0
Port From (https://github.com/TrinityCore/TrinityCore/commit/9f30afe3528441571f89cb2e1775c756774fa0cd)
This commit is contained in:
@@ -31,12 +31,13 @@ namespace Framework.Constants
|
||||
PerCharacterTtsCache = 9,
|
||||
GlobalFlaggedCache = 10,
|
||||
PerCharacterFlaggedCache = 11,
|
||||
PerCharacterClickBindingsCache = 12,
|
||||
|
||||
Max = 12,
|
||||
Max = 13,
|
||||
|
||||
AllAccountDataCacheMask = 0xFFF,
|
||||
AllAccountDataCacheMask = 0x1FFF,
|
||||
GlobalCacheMask = 0x515,
|
||||
PerCharacterCacheMask = 0xAEA
|
||||
PerCharacterCacheMask = 0x1AEA
|
||||
}
|
||||
|
||||
public enum TutorialAction
|
||||
|
||||
@@ -40,7 +40,8 @@ namespace Framework.Constants
|
||||
Unk = 2,
|
||||
Polygon = 3,
|
||||
Cylinder = 4,
|
||||
Max = 5
|
||||
Disk = 5,
|
||||
Max
|
||||
}
|
||||
|
||||
public enum AreaTriggerActionTypes
|
||||
|
||||
@@ -93,4 +93,11 @@ namespace Framework.Constants
|
||||
InterpolatedTurning = 0x40000,
|
||||
InterpolatedPitching = 0x80000
|
||||
}
|
||||
|
||||
[Flags]
|
||||
public enum MovementFlags3
|
||||
{
|
||||
None = 0x00,
|
||||
DisableInertia = 0x01,
|
||||
}
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -213,7 +213,7 @@ namespace Framework.Constants
|
||||
/// <summary>
|
||||
/// AreaTrigger Const
|
||||
/// </summary>
|
||||
public const int MaxAreatriggerEntityData = 6;
|
||||
public const int MaxAreatriggerEntityData = 8;
|
||||
public const int MaxAreatriggerScale = 7;
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user