diff options
| author | funjoker <torti-esser@web.de> | 2018-01-28 19:33:33 +0100 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2018-01-28 19:33:33 +0100 |
| commit | c4bf996c7d23fdfdb73d411d3f49a394b37d4d21 (patch) | |
| tree | 6ce248840d1bd1194c5ff48528991d1add876a1d /sql | |
| parent | 6226189a1687e1a2b4fb5a490031c22b5f334dc6 (diff) | |
Core/Spells: Allow skipping automatic removal of auras from spell_area when condition is no longer met (mostly used for cosmetic cutscenes after quest completion) (#21317)
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/master/2018_01_28_00_world.sql | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/updates/world/master/2018_01_28_00_world.sql b/sql/updates/world/master/2018_01_28_00_world.sql new file mode 100644 index 00000000000..db16731ab7f --- /dev/null +++ b/sql/updates/world/master/2018_01_28_00_world.sql @@ -0,0 +1,2 @@ +ALTER TABLE `spell_area` CHANGE `autocast` `flags` TINYINT(3) UNSIGNED NOT NULL DEFAULT '3' AFTER `gender`; +UPDATE `spell_area` SET `flags`=`flags`|2; |
