diff options
| author | Gildor <gildor55@gmail.com> | 2020-07-04 15:56:48 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-04 15:56:48 +0200 |
| commit | 26ba4ecd5140fa13953ca7c3e1ab3f269a85ce71 (patch) | |
| tree | 70f98135d3bda518345639aadcab71a6c99005ea /sql/updates | |
| parent | 488fbb20fc94bca593d0764da00eb802271a7849 (diff) | |
Core/Spells: Check a few aura effects for determining if should be negative (#24930)
* Core/Spells: Check a few aura effects for determining if should be negative
* Rename 9999_99_99_99_world_auras.sql to 2020_07_04_00_world.sql
Co-authored-by: Giacomo Pozzoni <giacomopoz@gmail.com>
Diffstat (limited to 'sql/updates')
| -rw-r--r-- | sql/updates/world/3.3.5/2020_07_04_00_world.sql | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2020_07_04_00_world.sql b/sql/updates/world/3.3.5/2020_07_04_00_world.sql new file mode 100644 index 00000000000..22e80936fa5 --- /dev/null +++ b/sql/updates/world/3.3.5/2020_07_04_00_world.sql @@ -0,0 +1,8 @@ +-- +-- Baron Geddon: Ignite Mana isn't needed +DELETE FROM `spell_custom_attr` WHERE `entry`=19659; + +-- Mana-Tombs: Death Coil must be negative +DELETE FROM `spell_custom_attr` WHERE `entry`=38065; +INSERT INTO `spell_custom_attr` (`entry`,`attributes`) VALUES +(38065,8192); |
