DB/Spells:

- Added EffectItemType columns to spell_dbc table
- Fix "Create Bundle of Bloodthistle"
This commit is contained in:
Vincent-Michael
2014-09-21 04:18:31 +02:00
parent df50d07567
commit c243bf96d4
3 changed files with 7 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
ALTER TABLE `spell_dbc` ADD `EffectItemType1` INT(10) UNSIGNED NOT NULL DEFAULT '0' AFTER `EffectMultipleValue3`;
ALTER TABLE `spell_dbc` ADD `EffectItemType2` INT(10) UNSIGNED NOT NULL DEFAULT '0' AFTER `EffectItemType1`;
ALTER TABLE `spell_dbc` ADD `EffectItemType3` INT(10) UNSIGNED NOT NULL DEFAULT '0' AFTER `EffectItemType2`;
UPDATE `spell_dbc` SET `EffectItemType1`=30616 WHERE `Id`=37064;