diff options
| author | QAston <none@none> | 2009-07-19 14:56:18 +0200 |
|---|---|---|
| committer | QAston <none@none> | 2009-07-19 14:56:18 +0200 |
| commit | b16ffa91b166f7964d22ccfc31cc97eeac049969 (patch) | |
| tree | 3efa54efe62f693f81f74ccf23e9034058d62936 /sql | |
| parent | 94992adb64544ab6a813f3e244a2e14cf80823f5 (diff) | |
*Correct diminishing returns for charge and linked spell for Stoneform.
--HG--
branch : trunk
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/FULL/world_spell_full.sql | 2 | ||||
| -rw-r--r-- | sql/updates/4510_world_spell_linked_spell.sql | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/sql/FULL/world_spell_full.sql b/sql/FULL/world_spell_full.sql index adc11d4dc82..c675d9f86bc 100644 --- a/sql/FULL/world_spell_full.sql +++ b/sql/FULL/world_spell_full.sql @@ -68,7 +68,7 @@ INSERT INTO `spell_linked_spell` (`spell_trigger`, `spell_effect`, `type`, `comm (48384, 50170, 2, 'Improved Moonkin Form'), (48395, 50171, 2, 'Improved Moonkin Form'), (48396, 50172, 2, 'Improved Moonkin Form'), -( 20594, 65116, 2, 'Stoneform'), +( 20594, 65116, 0, 'Stoneform'), -- Creature ( 36574, 36650, 0, 'Apply Phase Slip Vulnerability'), diff --git a/sql/updates/4510_world_spell_linked_spell.sql b/sql/updates/4510_world_spell_linked_spell.sql new file mode 100644 index 00000000000..b92a87bb267 --- /dev/null +++ b/sql/updates/4510_world_spell_linked_spell.sql @@ -0,0 +1,3 @@ +DELETE FROM `spell_linked_spell` WHERE `spell_trigger` IN (20594); +INSERT INTO `spell_linked_spell` (`spell_trigger`, `spell_effect`, `type`, `comment`) VALUES +( 20594, 65116, 0, 'Stoneform');
\ No newline at end of file |
