aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authortreeston <treeston.mmoc@gmail.com>2015-09-02 02:02:34 +0100
committerMitchesD <majklprofik@seznam.cz>2015-10-20 15:39:42 +0200
commit12e90350e4b852705e35b7c2e9aa12c24148958d (patch)
tree253ee9c112e241b29b41cbc50eebfbfc22cceee2 /sql
parent630e482f91d8480c78308b99090a39e59036af8b (diff)
Script/BoreanTundra: Fix dialog and final waypoint for quest 11570: "Escape from the Winterfin Caverns"
This fixes the following bugs: Escortee NPC quotes are out of order (see #15396 (comment)) Final escort waypoint is located incorrectly and causes the escorted NPC to drop all the way to the bottom of the ocean before quest completion is awarded. Closes #15396 Signed-off-by: DDuarte <dnpd.dd@gmail.com> (cherry picked from commit a83437af3dd03cc2227947ff229da3bf2d5421f0)
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/world/2015_10_20_02_world_2015_09_02_00.sql7
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/updates/world/2015_10_20_02_world_2015_09_02_00.sql b/sql/updates/world/2015_10_20_02_world_2015_09_02_00.sql
new file mode 100644
index 00000000000..c83de23b06a
--- /dev/null
+++ b/sql/updates/world/2015_10_20_02_world_2015_09_02_00.sql
@@ -0,0 +1,7 @@
+-- Waypoint fix for quest "Escape from the Winterfin Caverns" (11570)
+UPDATE `script_waypoint` SET `location_x`=4279.54, `location_y`=6187.932, `location_z`=0.294670 WHERE `entry`=25208 AND `pointid`=41;
+
+-- Swap 1st and 2nd text
+UPDATE `creature_text` SET `groupid` = 99 WHERE `entry` = 25208 AND `groupid` = 0 AND `id` = 0;
+UPDATE `creature_text` SET `groupid` = 0 WHERE `entry` = 25208 AND `groupid` = 1 AND `id` = 0;
+UPDATE `creature_text` SET `groupid` = 1 WHERE `entry` = 25208 AND `groupid` = 99 AND `id` = 0;