forked from azerothcore/azerothcore-wotlk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(DB/Core): Throwing spells for Instructor Razuvious and Drakkari B…
…attle Riders (azerothcore#2109)
- Loading branch information
Stoabrogga
authored
Aug 4, 2019
1 parent
dd7f67c
commit 5e34574
Showing
2 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
7 changes: 7 additions & 0 deletions
7
data/sql/updates/pending_db_world/rev_1563489887082454533.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1563489887082454533'); | ||
|
||
-- Equip a throwing knife for Instructor Razuvious to use with his ability "Jagged Knife" | ||
UPDATE `creature_equip_template` SET `ItemID3` = 29010 WHERE `CreatureID` = 16061; | ||
|
||
-- Ensure that the Drakkari Battle Riders can use their ability "Poisoned Spear" (otherwise they would constantly use "Throw") | ||
UPDATE `smart_scripts` SET `action_param2` = 1 WHERE `entryorguid` = 29836 AND `source_type` = 0 AND `id` IN (2,3); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters