diff options
author | Vincent-Michael <Vincent_Michael@gmx.de> | 2012-09-07 02:02:35 +0200 |
---|---|---|
committer | Vincent-Michael <Vincent_Michael@gmx.de> | 2012-09-07 02:02:35 +0200 |
commit | ce42faafd9122f3be148ee4863f4140b96d1b26f (patch) | |
tree | 6e414ccaaf587e299e0643765a765c834c340787 | |
parent | aed0ecd2e4b8471fb1e8e77d4a9c992835f61f7c (diff) |
DB/Spells: Fix Flamecap Fire damage
-rw-r--r-- | sql/updates/world/2012_09_07_00_world_spell_bonus_data.sql | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sql/updates/world/2012_09_07_00_world_spell_bonus_data.sql b/sql/updates/world/2012_09_07_00_world_spell_bonus_data.sql new file mode 100644 index 00000000000..3d39c06051a --- /dev/null +++ b/sql/updates/world/2012_09_07_00_world_spell_bonus_data.sql @@ -0,0 +1,4 @@ +SET @Spell := 28715; -- Flamecap Fire +DELETE FROM `spell_bonus_data` WHERE `entry`=@Spell; +INSERT INTO `spell_bonus_data` (`entry`,`direct_bonus`,`dot_bonus`,`ap_bonus`,`ap_dot_bonus`,`comments`) VALUES +(@Spell,0,0,0,0, 'Flamecap Fire'); |