mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01: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:
20
sql/updates/world/2012_05_26_00_world_scripts.sql
Normal file
20
sql/updates/world/2012_05_26_00_world_scripts.sql
Normal 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);
|
||||
Reference in New Issue
Block a user