Sign in to follow this  
Followers 0
Florix

[Battle for Azeroth]: Scouring the Desert

2 posts in this topic

Title: Scouring the Desert
Bugtracker Link:


Patch Content:

 

While questing in Silithus, i've encountered a few bugs on Quests.

 

https://www.wowhead.com/quest=9415/report-to-marshal-bluewall can be accepted and turned in by the same Quest giver.
https://www.wowhead.com/quest=28867/nethergarde-needs-you can also be accepted and turned in by the same Quest giver.
https://www.wowhead.com/quest=9419/scouring-the-desert is bugged and by reading the Wowhead comments. a few people wrote that it got removed in Legion, around 7.2.5.

 

DELETE FROM `creature_questender` WHERE `id` IN ('50588','5393') AND `quest`='28867';
DELETE FROM `creature_questender` WHERE `id` IN ('17082','17080') AND `quest`='9415';
INSERT INTO `creature_questender` (`id`,`quest`) VALUES 
('5393','28867'),
('17080','9415');
-- Quest 9422 & 9419 got removed with Legion (comments say around 7.2.5
UPDATE `quest_template` SET `QuestType`='1' WHERE `id`='9419';
UPDATE `quest_template` SET `QuestType`='1' WHERE `id`='9422';

 

 

Edited by Florix

Share this post


Link to post
Share on other sites

Hey, 
please don't change the quest_template.
If it's disabled use the disables table.
 

DELETE FROM `disables` WHERE `sourceType`=1 AND `entry` IN (9419, 9422);
INSERT INTO `disables` (`sourceType`, `entry`, `flags`, `comment`) VALUES
(1, 9419, 0, 'Deprecated quest: Scouring the Desert'),
(1, 9422, 0, 'Deprecated quest: Scouring the Desert');

 

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!


Register a new account

Sign in

Already have an account? Sign in here.


Sign In Now
Sign in to follow this  
Followers 0