EAI: Fix unkillable Obsidian Nullifier in AQ
Closes #2977
SAI: Use correct action_type for two SAI scripts (was 0)
Closes #6569 and fixes DB startup errors
This commit is contained in:
Nay
2012-05-26 15:03:30 +01:00
parent 74da8dc410
commit a0028fca55

View File

@@ -0,0 +1,20 @@
-- Correction for Obsidian Nullifier EAI
UPDATE `creature_ai_scripts` SET
`action1_param1` = 23
WHERE `id` = 1531201;
-- Correction for Wildspawn Felsworn and Wildspawn Hellcaller SAI
UPDATE `smart_scripts` SET
`event_phase_mask` = 2,
`action_type` = 22,
`action_param1` = 1,
`target_type` = 1
WHERE
(`entryorguid` = 11457 AND
`source_type` = 0 AND
`id` = 10 AND
`link` = 0) OR
(`entryorguid` = 11455 AND
`source_type` = 0 AND
`id` = 11 AND
`link` = 0);