diff options
author | Vincent-Michael <Vincent_Michael@gmx.de> | 2015-01-30 23:00:18 +0100 |
---|---|---|
committer | Vincent-Michael <Vincent_Michael@gmx.de> | 2015-01-30 23:00:18 +0100 |
commit | 74094dae637ffdddace0c2b14a10bd43ec0959f8 (patch) | |
tree | ae1d39fe5026ee0108ba330df4cdedc3dabf40ea | |
parent | 89c535cf2a960ccc03cd1a032310984f9b4e1d47 (diff) |
SQL: Fix import
-rw-r--r-- | sql/updates/world/2015_01_30_00_world.sql | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/updates/world/2015_01_30_00_world.sql b/sql/updates/world/2015_01_30_00_world.sql index 4393b38ddd2..57910525e52 100644 --- a/sql/updates/world/2015_01_30_00_world.sql +++ b/sql/updates/world/2015_01_30_00_world.sql @@ -19,9 +19,9 @@ INSERT INTO `areatrigger_scripts` (`entry`,`ScriptName`) VALUES (5660, 'at_hor_uther_quel_delar_start'); DELETE FROM `spell_target_position` WHERE `id` IN(70719,70700); -INSERT INTO `spell_target_position` (`id`,`target_map`,`target_position_x`,`target_position_y`,`target_position_z`,`target_orientation`) VALUES -(70719, 668, 5302, 1989, 708, 0), -(70700, 668, 5298, 1995, 708, 0); +INSERT INTO `spell_target_position` (`id`,`MapID`,`PositionX`,`PositionY`,`PositionZ`) VALUES +(70719, 668, 5302, 1989, 708), +(70700, 668, 5298, 1995, 708); DELETE FROM `creature_loot_template` WHERE `entry` = 37158 AND `item` = 50254; INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Chance`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`) VALUES |