diff options
author | Traesh <Traesh@users.noreply.github.com> | 2018-08-05 18:57:35 +0200 |
---|---|---|
committer | joschiwald <joschiwald.trinity@gmail.com> | 2018-08-05 18:57:35 +0200 |
commit | a8a071e9d9513b951a61b423ddee612b9d29add8 (patch) | |
tree | d8f9922d48192ab54b28f7295ed76a5aebf67303 /sql | |
parent | d520854912af4e40aca67c30a37a6847c13256af (diff) |
Core/AreaTrigger: handle AREATRIGGER_FLAG_HAS_CIRCULAR_MOVEMENT (#21778)
Diffstat (limited to 'sql')
-rw-r--r-- | sql/updates/world/master/2018_08_05_00_world.sql | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sql/updates/world/master/2018_08_05_00_world.sql b/sql/updates/world/master/2018_08_05_00_world.sql new file mode 100644 index 00000000000..eabd469a873 --- /dev/null +++ b/sql/updates/world/master/2018_08_05_00_world.sql @@ -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`) +); |