diff options
| author | Killyana <morphone1@gmail.com> | 2019-01-26 21:00:25 +0100 |
|---|---|---|
| committer | Killyana <morphone1@gmail.com> | 2019-01-26 21:00:25 +0100 |
| commit | 342e009c3e69ac70583bb7d78f87b93fa23f49bc (patch) | |
| tree | d0decd75c3a3229d8f1b50c7fc577cf81c1b699d | |
| parent | 75c553fe5900f9b52f04889e970221196ef27acf (diff) | |
DB: Fix WrathGate spell area and npcs reaction
Closes #20772
| -rw-r--r-- | sql/updates/world/3.3.5/2019_01_26_02_world.sql | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2019_01_26_02_world.sql b/sql/updates/world/3.3.5/2019_01_26_02_world.sql new file mode 100644 index 00000000000..864322cb32b --- /dev/null +++ b/sql/updates/world/3.3.5/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`,`autocast`,`quest_start_status`, `quest_end_status`) VALUES +(58932, 4169, 12499, 0, 0, 0, 2, 1, 64, 11), +(58932, 4169, 12500, 0, 0, 0, 2, 1, 64, 11), +(58932, 4171, 12499, 0, 0, 0, 2, 1, 64, 11), +(58932, 4171, 12500, 0, 0, 0, 2, 1, 64, 11), +(58932, 4170, 12499, 0, 0, 0, 2, 1, 64, 11), +(58932, 4170, 12500, 0, 0, 0, 2, 1, 64, 11), +(58932, 4172, 12499, 0, 0, 0, 2, 1, 64, 11), +(58932, 4172, 12500, 0, 0, 0, 2, 1, 64, 11), +(60778, 4171, 12500, 0, 0, 0, 2, 1, 64, 11), +(60778, 4171, 12499, 0, 0, 0, 2, 1, 64, 11), +(60778, 4172, 12499, 0, 0, 0, 2, 1, 64, 11), +(60778, 4172, 12500, 0, 0, 0, 2, 1, 64, 11), +(46999, 4169, 12499, 0, 0, 1101, 2, 1, 11, 11), +(46999, 4170, 12499, 0, 0, 1101, 2, 1, 11, 11), +(46999, 4171, 12499, 0, 0, 1101, 2, 1, 11, 11), +(46999, 4172, 12499, 0, 0, 1101, 2, 1, 11, 11), +(46999, 4169, 12500, 0, 0, 690, 2, 1, 11, 11), +(46999, 4171, 12500, 0, 0, 690, 2, 1, 11, 11), +(46999, 4170, 12500, 0, 0, 690, 2, 1, 11, 11), +(46999, 4172, 12500, 0, 0, 690, 2, 1, 11, 11), +(50226, 4169, 12499, 0, 0, 1101 , 2, 1, 11, 11), +(50226, 4170, 12499, 0, 0, 1101 , 2, 1, 11, 11), +(50226, 4171, 12499, 0, 0, 1101 , 2, 1, 11, 11), +(50226, 4172, 12499, 0, 0, 1101 , 2, 1, 11, 11), +(50225, 4169, 12500, 0, 0, 690, 2, 1, 11, 11), +(50225, 4171, 12500, 0, 0, 690, 2, 1, 11, 11), +(50225, 4170, 12500, 0, 0, 690, 2, 1, 11, 11), +(50225, 4172, 12500, 0, 0, 690, 2, 1, 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); |
