diff options
author | Killyana <morphone1@gmail.com> | 2019-01-26 21:00:25 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2021-11-22 23:22:50 +0100 |
commit | 2f2c7275f9c96b47679127d62824f24f9d9f1c29 (patch) | |
tree | 6be84f74e1c6c420756512d7b6cdbbc4b46ce410 | |
parent | e73cca8e794b4c0ebfc6c590f0c7a6fb35cd1665 (diff) |
DB: Fix WrathGate spell area and npcs reaction
Closes #20772
(cherry picked from commit 342e009c3e69ac70583bb7d78f87b93fa23f49bc)
-rw-r--r-- | sql/updates/world/master/2021_11_22_01_world_2019_01_26_02_world.sql | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/sql/updates/world/master/2021_11_22_01_world_2019_01_26_02_world.sql b/sql/updates/world/master/2021_11_22_01_world_2019_01_26_02_world.sql new file mode 100644 index 00000000000..1a6df232aff --- /dev/null +++ b/sql/updates/world/master/2021_11_22_01_world_2019_01_26_02_world.sql @@ -0,0 +1,34 @@ +-- +DELETE FROM `spell_area` WHERE `area` IN (4169,4170,4171,4172); +INSERT INTO `spell_area` (`spell`,`area`,`quest_start`,`quest_end`,`aura_spell`,`racemask`,`gender`,`flags`,`quest_start_status`, `quest_end_status`) VALUES +(58932, 4169, 12499, 0, 0, 0, 2, 3, 64, 11), +(58932, 4169, 12500, 0, 0, 0, 2, 3, 64, 11), +(58932, 4171, 12499, 0, 0, 0, 2, 3, 64, 11), +(58932, 4171, 12500, 0, 0, 0, 2, 3, 64, 11), +(58932, 4170, 12499, 0, 0, 0, 2, 3, 64, 11), +(58932, 4170, 12500, 0, 0, 0, 2, 3, 64, 11), +(58932, 4172, 12499, 0, 0, 0, 2, 3, 64, 11), +(58932, 4172, 12500, 0, 0, 0, 2, 3, 64, 11), +(60778, 4171, 12500, 0, 0, 0, 2, 3, 64, 11), +(60778, 4171, 12499, 0, 0, 0, 2, 3, 64, 11), +(60778, 4172, 12499, 0, 0, 0, 2, 3, 64, 11), +(60778, 4172, 12500, 0, 0, 0, 2, 3, 64, 11), +(46999, 4169, 12499, 0, 0, 2971683917, 2, 3, 11, 11), +(46999, 4170, 12499, 0, 0, 2971683917, 2, 3, 11, 11), +(46999, 4171, 12499, 0, 0, 2971683917, 2, 3, 11, 11), +(46999, 4172, 12499, 0, 0, 2971683917, 2, 3, 11, 11), +(46999, 4169, 12500, 0, 0, 1308636082, 2, 3, 11, 11), +(46999, 4171, 12500, 0, 0, 1308636082, 2, 3, 11, 11), +(46999, 4170, 12500, 0, 0, 1308636082, 2, 3, 11, 11), +(46999, 4172, 12500, 0, 0, 1308636082, 2, 3, 11, 11), +(50226, 4169, 12499, 0, 0, 2971683917 , 2, 3, 11, 11), +(50226, 4170, 12499, 0, 0, 2971683917 , 2, 3, 11, 11), +(50226, 4171, 12499, 0, 0, 2971683917 , 2, 3, 11, 11), +(50226, 4172, 12499, 0, 0, 2971683917 , 2, 3, 11, 11), +(50225, 4169, 12500, 0, 0, 1308636082, 2, 3, 11, 11), +(50225, 4171, 12500, 0, 0, 1308636082, 2, 3, 11, 11), +(50225, 4170, 12500, 0, 0, 1308636082, 2, 3, 11, 11), +(50225, 4172, 12500, 0, 0, 1308636082, 2, 3, 11, 11); +-- +UPDATE `creature_template` SET `flags_extra`=`flags_extra`|64 WHERE `entry` IN (27603,27631,27691,27605,27611,27693); +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry` IN (27605); |