diff options
| author | Wyrserth <Wyrserth@users.noreply.github.com> | 2019-06-23 21:19:12 +0200 |
|---|---|---|
| committer | Killyana <morphone1@gmail.com> | 2019-06-23 21:19:12 +0200 |
| commit | 2cd6da0313e063b8c54f7dedb7c99f21d21ceac1 (patch) | |
| tree | 50a123562ac5180cc58f2615952c995b53b46702 | |
| parent | 9f07f7945bbc0a1df5bd599ac00ccaece508d53d (diff) | |
DB/Creature: allow Imprisoned Beryl Sorcerer and Archmage Evanor to be visible only after certain milestones in quest chain progress
Closes #23484
| -rw-r--r-- | sql/updates/world/3.3.5/2019_06_23_014_world.sql | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2019_06_23_014_world.sql b/sql/updates/world/3.3.5/2019_06_23_014_world.sql new file mode 100644 index 00000000000..409df2d5c12 --- /dev/null +++ b/sql/updates/world/3.3.5/2019_06_23_014_world.sql @@ -0,0 +1,10 @@ +-- +UPDATE `creature_template_addon` SET `auras`="45842" WHERE `entry`=25478; +DELETE FROM `creature_addon` WHERE `guid`=113408; +INSERT INTO `creature_addon` (`guid`, `auras`) VALUES +(113408, "46076"); + +DELETE FROM `spell_area` WHERE `spell` IN (45844, 46079); +INSERT INTO `spell_area` (`spell`, `area`, `quest_start`, `quest_end`, `aura_spell`, `racemask`, `gender`, `autocast`, `quest_start_status`, `quest_end_status`) VALUES +(45844, 4023, 11590, 0, 0, 0, 2, 1, 64, 11), +(46079, 4023, 11681, 0, 0, 0, 2, 1, 66, 11); |
