diff options
| author | maximius <none@none> | 2009-08-13 17:05:15 -0700 |
|---|---|---|
| committer | maximius <none@none> | 2009-08-13 17:05:15 -0700 |
| commit | 5d4ffbb90a47c7b562150197d7f9d43303f9325d (patch) | |
| tree | a26957c5e83ef220088c23fa9e7fb63da60fe32d /sql | |
| parent | ad4267ce11270767a9e1574104f188d402adb525 (diff) | |
*Fix Anzu multiple spawns, by Oculus
--HG--
branch : trunk
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/FULL/world_scripts_full.sql | 5 | ||||
| -rw-r--r-- | sql/updates/4994_world_script.sql | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/sql/FULL/world_scripts_full.sql b/sql/FULL/world_scripts_full.sql index 92d841821a1..3494ae059c0 100644 --- a/sql/FULL/world_scripts_full.sql +++ b/sql/FULL/world_scripts_full.sql @@ -1201,3 +1201,8 @@ INSERT INTO areatrigger_scripts VALUES (4156, 'at_naxxramas_frostwyrm_wing'); DELETE FROM areatrigger_scripts WHERE entry=3066; INSERT INTO areatrigger_scripts VALUES (3066,'at_ravenholdt'); + +/* Oculus: "Just for the logic, shouldn't be necessary": */ +DELETE FROM `creature_ai_scripts` WHERE `creature_id`=23035 AND `comment` LIKE 'Anzu%Death'; +INSERT INTO `creature_ai_scripts` (`creature_id`,`event_type`,`event_chance`,`event_flags`,`action1_type`,`action1_param1`,`action1_param2`,`comment`) VALUES +(23035,6,100,6,34,2,3,'Anzu - Set Inst Data on Death'); diff --git a/sql/updates/4994_world_script.sql b/sql/updates/4994_world_script.sql new file mode 100644 index 00000000000..6b13eddc650 --- /dev/null +++ b/sql/updates/4994_world_script.sql @@ -0,0 +1,4 @@ +/* Oculus: "Just for the logic, shouldn't be necessary": */ +DELETE FROM `creature_ai_scripts` WHERE `creature_id`=23035 AND `comment` LIKE 'Anzu%Death'; +INSERT INTO `creature_ai_scripts` (`creature_id`,`event_type`,`event_chance`,`event_flags`,`action1_type`,`action1_param1`,`action1_param2`,`comment`) VALUES +(23035,6,100,6,34,2,3,'Anzu - Set Inst Data on Death'); |
