diff options
author | Dr-J <daniel.jarrott0@gmail.com> | 2014-11-10 21:57:42 +0000 |
---|---|---|
committer | Dr-J <daniel.jarrott0@gmail.com> | 2014-11-10 21:57:42 +0000 |
commit | a74b7228b8c28f0cc6762816ea33be2ec8a2266e (patch) | |
tree | 2c0919fd54918b0798783bd5bae51f1772319fe7 | |
parent | 90c53e8c84b6a7b4346bda8087be8d14d0902d1a (diff) |
DB/Quest: Rallying the Troops
The original fix by @Nevadas is correct according to sniff, when the spell hits the grizzly hills giant in sniff it just gains aura and gives kill credit thats it,
Closes https://github.com/TrinityCore/TrinityCore/issues/4173
-rw-r--r-- | sql/updates/world/ 2014_11_10_03_world.sql | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sql/updates/world/ 2014_11_10_03_world.sql b/sql/updates/world/ 2014_11_10_03_world.sql new file mode 100644 index 00000000000..41044e8c7ef --- /dev/null +++ b/sql/updates/world/ 2014_11_10_03_world.sql @@ -0,0 +1,4 @@ +update creature_template set `AIName`='SmartAI' where entry=26261; + +Delete from `smart_scripts` where entryorguid=26261 and event_param1=47394; +INSERT INTO `smart_scripts` VALUES (26261, 0, 0, 0, 8, 0, 100, 0, 47394, 0, 0, 0, 33, 26261, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'On Spellhit call Killcredit for Q 12070'); |