diff options
author | Killyana <morphone1@gmail.com> | 2015-12-30 02:05:24 +0100 |
---|---|---|
committer | Killyana <morphone1@gmail.com> | 2015-12-30 02:05:24 +0100 |
commit | 13e509a622a6d88afe27d6cdda4cf9f402818745 (patch) | |
tree | 93d25c08b2a911eb621e31b05c7c51974e5ea669 | |
parent | 1c877ecbd2a4c81204f932a4f249b8f9dd6f5b90 (diff) |
Script/Creature: Imprisoned Beryl Sorcerer
Add missing emote state
Move the credit quest on the 5th hit instead of the 7th one
-rw-r--r-- | sql/updates/world/2015_12_29_13_world.sql | 4 | ||||
-rw-r--r-- | src/server/scripts/Northrend/zone_borean_tundra.cpp | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/sql/updates/world/2015_12_29_13_world.sql b/sql/updates/world/2015_12_29_13_world.sql new file mode 100644 index 00000000000..fc182ae49fb --- /dev/null +++ b/sql/updates/world/2015_12_29_13_world.sql @@ -0,0 +1,4 @@ +-- +DELETE FROM `creature_template_addon` WHERE `entry`=25478; +INSERT INTO `creature_template_addon` (`entry`,`bytes1`,`bytes2`,`emote`) VALUES +(25478,0,4097,415); diff --git a/src/server/scripts/Northrend/zone_borean_tundra.cpp b/src/server/scripts/Northrend/zone_borean_tundra.cpp index 6ef9abe2267..7e56fd6ed4b 100644 --- a/src/server/scripts/Northrend/zone_borean_tundra.cpp +++ b/src/server/scripts/Northrend/zone_borean_tundra.cpp @@ -1655,13 +1655,13 @@ public: break; case 5: Talk(SAY_IMPRISIONED_BERYL_5); + caster->KilledMonsterCredit(NPC_IMPRISONED_BERYL_SORCERER); break; case 6: Talk(SAY_IMPRISIONED_BERYL_6, caster); break; case 7: Talk(SAY_IMPRISIONED_BERYL_7); - caster->KilledMonsterCredit(NPC_IMPRISONED_BERYL_SORCERER); break; } } |