diff options
author | Tomas <tassader@github.com> | 2012-09-11 00:35:36 +0100 |
---|---|---|
committer | Nay <dnpd.dd@gmail.com> | 2012-09-11 00:35:36 +0100 |
commit | f2067f98f90cfbe00e7dc30323c51ce3320ff509 (patch) | |
tree | 97dd9bc7b8b037d35d78095512ca5ecf24b34a47 | |
parent | 9f87270d80dd1d61db4b1e28f2af7d7dcec4a29d (diff) |
DB/Spells: Armistice aura is missing when player is in front Sunreaver Pavillion or Silver Covenant Pavillion
Closes #1938
-rw-r--r-- | sql/updates/world/2012_09_10_08_world_spell_area.sql | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/updates/world/2012_09_10_08_world_spell_area.sql b/sql/updates/world/2012_09_10_08_world_spell_area.sql new file mode 100644 index 00000000000..4e4e36051c9 --- /dev/null +++ b/sql/updates/world/2012_09_10_08_world_spell_area.sql @@ -0,0 +1,5 @@ +-- Cast Armistice in front of the pavillions as well +DELETE FROM `spell_area` WHERE `spell`=64373 AND `area` IN (4676, 4677); +INSERT INTO `spell_area` (`spell`,`area`,`quest_start`,`quest_start_active`,`quest_end`,`aura_spell`,`racemask`,`gender`,`autocast`) VALUES +(64373,4676,0,0,0,0,0,2,1), -- Sunreaver Pavillion +(64373,4677,0,0,0,0,0,2,1); -- SIlver Covenant Pavillion |