Core/AreaTrigger: handle AREATRIGGER_FLAG_HAS_CIRCULAR_MOVEMENT
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
DROP TABLE IF EXISTS `spell_areatrigger_circular`;
|
||||
CREATE TABLE `spell_areatrigger_circular`(
|
||||
`SpellMiscId` INT(10) UNSIGNED NOT NULL,
|
||||
`StartDelay` INT(10) UNSIGNED NOT NULL DEFAULT 0,
|
||||
`CircleRadius` FLOAT NOT NULL DEFAULT 0,
|
||||
`BlendFromRadius` FLOAT NOT NULL DEFAULT 0,
|
||||
`InitialAngle` FLOAT NOT NULL DEFAULT 0,
|
||||
`ZOffset` FLOAT NOT NULL DEFAULT 0,
|
||||
`CounterClockwise` TINYINT(3) UNSIGNED NOT NULL DEFAULT 0,
|
||||
`CanLoop` TINYINT(3) UNSIGNED NOT NULL DEFAULT 0,
|
||||
`VerifiedBuild` INT(10) UNSIGNED NOT NULL DEFAULT 0,
|
||||
PRIMARY KEY (`SpellMiscId`)
|
||||
);
|
||||
Reference in New Issue
Block a user