diff options
author | megamage <none@none> | 2008-12-10 15:24:22 -0600 |
---|---|---|
committer | megamage <none@none> | 2008-12-10 15:24:22 -0600 |
commit | 5a378392504b7c1ac6d21c97a7203bd2b51db04a (patch) | |
tree | 28a9407ef930ebd2e4b19e7737c77b42c54f60e9 | |
parent | bcb39b263d65a52c7b21f372d92668a0504f8475 (diff) |
*Do not allow gift of the wild stacks with mark of the wild. By QAston.
--HG--
branch : trunk
-rw-r--r-- | sql/updates/452_world.sql | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sql/updates/452_world.sql b/sql/updates/452_world.sql new file mode 100644 index 00000000000..c5ac7f87cfb --- /dev/null +++ b/sql/updates/452_world.sql @@ -0,0 +1,9 @@ +-- link gift of the wild to mark of the wild + +DELETE FROM spell_chain WHERE spell_id = 21849; +DELETE FROM spell_chain WHERE spell_id = 21850; +DELETE FROM spell_chain WHERE spell_id = 26991; + +INSERT INTO spell_chain (spell_id,prev_spell,first_spell,rank,req_spell) VALUES (21849,0,1126,1,0); +INSERT INTO spell_chain (spell_id,prev_spell,first_spell,rank,req_spell) VALUES (21850,21849,1126,2,0); +INSERT INTO spell_chain (spell_id,prev_spell,first_spell,rank,req_spell) VALUES (26991,21850,1126,3,0);
\ No newline at end of file |