Core: Updated to 11.2.0

Port From (https://github.com/TrinityCore/TrinityCore/commit/5cf0c6c8bb2c4e58a2d66ba5f304af34d18a4782)
This commit is contained in:
Hondacrx
2025-08-25 20:48:29 -04:00
parent d64045154a
commit aaa669210a
63 changed files with 5958 additions and 5434 deletions
@@ -46,4 +46,28 @@ namespace Framework.Constants
HasCircularMovement = 0x400, // DEPRECATED
Unk5 = 0x800,
}
public enum AreaTriggerFieldFlags
{
None = 0x0000,
HeightIgnoresScale = 0x0001,
WowLabsCircle = 0x0002,
CanLoop = 0x0004,
AbsoluteOrientation = 0x0008,
DynamicShape = 0x0010,
Attached = 0x0020,
FaceMovementDir = 0x0040,
FollowsTerrain = 0x0080,
Unknown1025 = 0x0100,
AlwaysExterior = 0x0200,
HasPlayers = 0x0400,
}
public enum AreaTriggerPathType
{
Spline = 0,
Orbit = 1,
None = 2,
MovementScript = 3
}
}