aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortkrokli <tkrokli@users.noreply.github.com>2016-10-23 17:10:48 +0200
committertkrokli <tkrokli@users.noreply.github.com>2016-10-23 17:10:48 +0200
commitf4f15d660fa7a03ee0f406319fa4251981a156cf (patch)
tree1d3a993baecb9f540b18035dfdc71bb29bd5fd44
parentcdb3b259168002868e17b2eff9da2e3804f3975b (diff)
DB/Quest: make Completing the Delivery completable
Quest ID 8350, Completing the Delivery, could not be completed because of missing and wrong quest reward info in quest_template. - http://www.wowhead.com/quest=8350/completing-the-delivery This fix also removes a console line warning about packet hacking.
-rw-r--r--sql/updates/world/master/2016_10_23_00_world.sql6
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/updates/world/master/2016_10_23_00_world.sql b/sql/updates/world/master/2016_10_23_00_world.sql
new file mode 100644
index 00000000000..4468795e94b
--- /dev/null
+++ b/sql/updates/world/master/2016_10_23_00_world.sql
@@ -0,0 +1,6 @@
+--
+UPDATE `quest_template` SET `RewardBonusMoney`= 60, -- 60 copper
+ `RewardChoiceItemID1`= 159, `RewardChoiceItemQuantity1`= 5, -- Refreshing Spring Water
+ `RewardChoiceItemID2`= 4536, `RewardChoiceItemQuantity2`= 5, -- Shiny Red Apple
+ `RewardFactionValue1`= 2, `RewardFactionOverride1`= 0 -- column values swapped
+WHERE `ID`= 8350;