mirror of
https://github.com/mangosfour/server.git
synced 2025-12-24 10:37:02 +00:00
* order guards not affected in sql updates so this not affect sql guards work. * TO DEVS: in next sql update commit please check carefully generated by git_is -s sql guards for correctness
16 lines
549 B
SQL
16 lines
549 B
SQL
ALTER TABLE db_version CHANGE COLUMN required_9460_01_mangos_spell_bonus_data required_9460_02_mangos_spell_chain bit;
|
|
|
|
-- Penance (damage)
|
|
DELETE FROM spell_chain WHERE first_spell = 47666;
|
|
INSERT INTO spell_chain VALUES
|
|
(47666, 0, 47666, 1, 0),
|
|
(52998, 47666, 47666, 2, 0),
|
|
(52999, 52998, 47666, 3, 0),
|
|
(53000, 52999, 47666, 4, 0);
|
|
-- Penance (healing)
|
|
DELETE FROM spell_chain WHERE first_spell = 47750;
|
|
INSERT INTO spell_chain VALUES
|
|
(47750, 0, 47750, 1, 0),
|
|
(52983, 47750, 47750, 2, 0),
|
|
(52984, 52983, 47750, 3, 0),
|
|
(52985, 52984, 47750, 4, 0);
|