diff options
author | ariel- <ariel-@users.noreply.github.com> | 2016-12-29 04:43:52 -0300 |
---|---|---|
committer | ariel- <ariel-@users.noreply.github.com> | 2016-12-29 04:43:52 -0300 |
commit | a39ccee33e9ca0573520b94598c95f533a800f29 (patch) | |
tree | 18daa980d4acd87bb79ab8e9fbe85a5fa22e75e2 | |
parent | 584d347b70be521d7431dfe1694b80f2e95b957b (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
-rw-r--r-- | sql/updates/world/3.3.5/2016_12_29_00_world_335.sql | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2016_12_29_00_world_335.sql b/sql/updates/world/3.3.5/2016_12_29_00_world_335.sql new file mode 100644 index 00000000000..563f5470a14 --- /dev/null +++ b/sql/updates/world/3.3.5/2016_12_29_00_world_335.sql @@ -0,0 +1,8 @@ +DELETE FROM `spell_custom_attr` WHERE `entry` IN (51699, 52910, 52914, 52915, 52916, 57723, 57724); +INSERT INTO `spell_custom_attr` (`entry`, `attributes`) VALUES +(52910, 0x40), -- Turn the Tables +(52914, 0x40), -- Turn the Tables +(52915, 0x40), -- Turn the Tables +(52916, 0x40), -- Honor Among Thieves +(57723, 0x40), -- Exhaustion +(57724, 0x40); -- Sated |