From d0512d8bcd9b546965b8c07819043ad6ff3c01c7 Mon Sep 17 00:00:00 2001 From: Melonio2 <67073517+Melonio2@users.noreply.github.com> Date: Thu, 15 Jul 2021 11:40:55 +0200 Subject: [PATCH] =?UTF-8?q?fix(DB/Quest):=20Quest=20"Devourer=20of=20Souls?= =?UTF-8?q?"=20Has=20Incorrect=20Qu=E2=80=A6=20(#6911)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * FIX ISSUE 6887 Orgrimmar - Quest "Devourer of Souls" Has Incorrect Quest Reward Text Fix DB RewardText for quest 1507 DESCRIPTION Change hard coded name to adapt to the player's name. Closes AzerothCore issue #6887 https://github.com/azerothcore/azerothcore-wotlk/issues/6887 DB (database related, sql) * Fix DB RewardText for quest 1507 DESCRIPTION Change hard coded name to adapt to the player's name. I put SQL in the good file this time ! Closes #6887 --- .../sql/updates/pending_db_world/rev_1626123639599949300.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1626123639599949300.sql diff --git a/data/sql/updates/pending_db_world/rev_1626123639599949300.sql b/data/sql/updates/pending_db_world/rev_1626123639599949300.sql new file mode 100644 index 000000000..c6282a41a --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1626123639599949300.sql @@ -0,0 +1,5 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1626123639599949300'); + +DELETE FROM `quest_offer_reward` WHERE (`ID` = 1507); +INSERT INTO `quest_offer_reward` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `RewardText`, `VerifiedBuild`) VALUES +(1507, 0, 0, 0, 0, 0, 0, 0, 0, 'Hm... $N. You are still new to your path, but I sense the possibility for greatness in you.$B$BYou were born with gifts, $N. See that they do not go to waste.', 12340);