Revision 2, 0.7 kB
(checked in by yumileroy, 17 years ago)
|
[svn] * Proper SVN structure
Original author: Neo2003
Date: 2008-10-02 16:23:55-05:00
|
Line | |
---|
1 | UPDATE playercreateinfo_spell SET Spell = '21084' WHERE Spell = '20154'; |
---|
2 | UPDATE playercreateinfo_action SET action = '21084' WHERE action = '20154'; |
---|
3 | DELETE FROM `character_spell` WHERE spell='20154'; |
---|
4 | |
---|
5 | -- re-add all default spells if not have with from spell list |
---|
6 | INSERT IGNORE INTO `character_spell` |
---|
7 | SELECT `character`.`guid`,`playercreateinfo_spell`.`spell` AS `spell`, '65535' AS `slot`,`playercreateinfo_spell`.`Active` AS `active` |
---|
8 | FROM `character`,`playercreateinfo_spell` |
---|
9 | WHERE `character`.`class`=`playercreateinfo_spell`.`class` AND `character`.`race`=`playercreateinfo_spell`.`race`; |
---|
10 | |
---|
11 | UPDATE character_action SET action = '21084' WHERE action = '20154' AND `type` = 0; |
---|