mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-30 21:57:01 +01:00
Core/Spells: Made the loading of the orientation of SPELL_DEST_DB from SpellEffect.dbc
This commit is contained in:
7
sql/updates/world/2014_11_20_02_world.sql
Normal file
7
sql/updates/world/2014_11_20_02_world.sql
Normal file
@@ -0,0 +1,7 @@
|
||||
ALTER TABLE `spell_target_position` CHANGE `id` `ID` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0';
|
||||
ALTER TABLE `spell_target_position` CHANGE `effIndex` `EffectIndex` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0';
|
||||
ALTER TABLE `spell_target_position` CHANGE `target_map` `MapID` SMALLINT(3) UNSIGNED NOT NULL DEFAULT '0';
|
||||
ALTER TABLE `spell_target_position` CHANGE `target_position_x` `PositionX` FLOAT NOT NULL DEFAULT '0';
|
||||
ALTER TABLE `spell_target_position` CHANGE `target_position_y` `PositionY` FLOAT NOT NULL DEFAULT '0';
|
||||
ALTER TABLE `spell_target_position` CHANGE `target_position_z` `PositionZ` FLOAT NOT NULL DEFAULT '0';
|
||||
ALTER TABLE `spell_target_position` DROP COLUMN `target_orientation`;
|
||||
Reference in New Issue
Block a user