diff options
author | ariel- <ariel-@users.noreply.github.com> | 2016-12-29 04:43:52 -0300 |
---|---|---|
committer | joschiwald <joschiwald.trinity@gmail.com> | 2018-04-29 14:47:07 +0200 |
commit | ad49d3a82201ce8de0171bc60787f20e57a5269b (patch) | |
tree | 28e1ce86cff16c0c5a2ff5db4238b03c201293dc | |
parent | 619ae373e5a70e26339b5adb2320bc7573196f6e (diff) |
DB/Spell: stop some auras from removing stealth
- They have damage class melee and proc PROC_FLAG_TAKEN_SPELL_MELEE_DMG_CLASS
- Sated/Exhaustion are negative auras, counts as negative spell flag, and stealth drops too
Closes #18421
Closes #18553
(cherry picked from commit a39ccee33e9ca0573520b94598c95f533a800f29)
-rw-r--r-- | sql/updates/world/master/2018_04_29_02_world_2016_12_29_00_world_335.sql | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sql/updates/world/master/2018_04_29_02_world_2016_12_29_00_world_335.sql b/sql/updates/world/master/2018_04_29_02_world_2016_12_29_00_world_335.sql new file mode 100644 index 00000000000..369b4bc6ea8 --- /dev/null +++ b/sql/updates/world/master/2018_04_29_02_world_2016_12_29_00_world_335.sql @@ -0,0 +1,4 @@ +DELETE FROM `spell_custom_attr` WHERE `entry` IN (57723, 57724); +INSERT INTO `spell_custom_attr` (`entry`, `attributes`) VALUES +(57723, 0x40), -- Exhaustion +(57724, 0x40); -- Sated |