From a8a071e9d9513b951a61b423ddee612b9d29add8 Mon Sep 17 00:00:00 2001 From: Traesh Date: Sun, 5 Aug 2018 18:57:35 +0200 Subject: Core/AreaTrigger: handle AREATRIGGER_FLAG_HAS_CIRCULAR_MOVEMENT (#21778) --- sql/updates/world/master/2018_08_05_00_world.sql | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 sql/updates/world/master/2018_08_05_00_world.sql (limited to 'sql') 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`) +); -- cgit v1.2.3