Skip to content

Commit

Permalink
DB/SAI: Fix quest Falcon Versus Hawk
Browse files Browse the repository at this point in the history
Closes #2127
  • Loading branch information
Odyssey authored and DDuarte committed Apr 1, 2012
1 parent f7b1edf commit b07e236
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions sql/updates/world/2012_04_01_06_world_sai.sql
@@ -0,0 +1,7 @@
-- Fix quest 11468 - Falcon versus hawk
SET @entry := 24747; -- Fjord Hawk
UPDATE creature_template SET AIName='SmartAI' WHERE entry=@entry;
DELETE FROM `smart_scripts` WHERE `entryorguid`=@entry AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@entry,0,0,1,8,0,100,0,44407,0,0,0,11,44408,0,0,0,0,0,7,0,0,0,0,0,0,0, 'Fjord Hawk - On Spellhit - Cast spell on invoker'),
(@entry,0,1,0,61,0,100,0,0,0,0,0,41,0,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Fjord Hawk - On Spellhit - Despawn');

1 comment on commit b07e236

@malcrom
Copy link
Contributor

@malcrom malcrom commented on b07e236 Apr 1, 2012

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I thought I had this done

Please sign in to comment.