fix(DB/Quest): Quest "Devourer of Souls" Has Incorrect Qu… (#6911)

* 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
This commit is contained in:
Melonio2
2021-07-15 11:40:55 +02:00
committed by GitHub
parent b680670047
commit d0512d8bcd

View File

@@ -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);