mirror of
https://github.com/araxiaonline/TrinityCore2.git
synced 2026-06-18 05:49:41 -04:00
DB/Misc:
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:
@@ -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);
|
||||
Reference in New Issue
Block a user