diff options
author | Vincent-Michael <Vincent_Michael@gmx.de> | 2013-08-10 20:06:00 +0200 |
---|---|---|
committer | Vincent-Michael <Vincent_Michael@gmx.de> | 2013-08-10 20:07:47 +0200 |
commit | f23069e324facd36325e02b92102a571556c4db2 (patch) | |
tree | 7a81f6e96d1afcc5bbd67a1f7c4b2eab423890f0 | |
parent | 181a3cad00460d88ad2a76dc63037ff2be88fd91 (diff) |
DB/Misc: Fix startup error
-rw-r--r-- | sql/updates/world/2013_08_09_09_world_sai.sql | 2 | ||||
-rw-r--r-- | sql/updates/world/2013_08_10_02_world_spell_target_position.sql | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/sql/updates/world/2013_08_09_09_world_sai.sql b/sql/updates/world/2013_08_09_09_world_sai.sql index 619f2fa9d3f..525e8958f14 100644 --- a/sql/updates/world/2013_08_09_09_world_sai.sql +++ b/sql/updates/world/2013_08_09_09_world_sai.sql @@ -17,9 +17,11 @@ DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=10 INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES (15,10024,0,0,28,12521,0,0,0,'','Show gossip option if player has quest Where in the World is Hemet Nesingwary?'); DELETE FROM `gossip_menu_option` WHERE `menu_id`=10024 AND `id`=1; +/* -- Add spell target position DELETE FROM `spell_target_position` WHERE `id`=50859; INSERT INTO `spell_target_position` (`id`,`target_map`,`target_position_x`,`target_position_y`,`target_position_z`,`target_orientation`) VALUES (50859,571,5832.892,482.8708,658.2753,0.9121326); +*/ -- Update Archmage Pentarus' Flying Machine UPDATE `creature_template` SET `InhabitType`=4 WHERE `entry`=28192; diff --git a/sql/updates/world/2013_08_10_02_world_spell_target_position.sql b/sql/updates/world/2013_08_10_02_world_spell_target_position.sql new file mode 100644 index 00000000000..fbd76738826 --- /dev/null +++ b/sql/updates/world/2013_08_10_02_world_spell_target_position.sql @@ -0,0 +1 @@ +DELETE FROM `spell_target_position` WHERE `id`=50859; |