fix(DB/Core/Quests): Fix the quest "Load'er Up" (#20241)
Co-authored-by: cgrahamseven <chris.graham@protonmail.com> Co-authored-by: sudlud <sudlud@users.noreply.github.com>
This commit is contained in:
parent
c3a888f684
commit
71870c05c7
2 changed files with 98 additions and 0 deletions
|
|
@ -0,0 +1,11 @@
|
|||
-- Remove SmartAI sql for NPC Jenny (25969)
|
||||
DELETE FROM `smart_scripts`
|
||||
WHERE `entryorguid` = 25969;
|
||||
|
||||
UPDATE `creature_template` SET `AIName` = '', `ScriptName` = 'npc_jenny' WHERE (`entry` = 25969);
|
||||
|
||||
-- spell 46340 Crates Carried
|
||||
-- add custom attribute SPELL_ATTR0_CU_IGNORE_EVADE
|
||||
DELETE FROM `spell_custom_attr` WHERE `spell_id` = 46340;
|
||||
INSERT INTO `spell_custom_attr` (`spell_id`, `attributes`) VALUES
|
||||
(46340, 2048);
|
||||
Loading…
Add table
Add a link
Reference in a new issue