From 2fc3717cdfe9838a79939b5852f8a61f777de9ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=83=91=E4=BD=A9=E8=8C=B9?= Date: Fri, 30 Sep 2022 16:05:20 -0600 Subject: [PATCH] Make disabled quest markers the default option --- sql/world/base/optional_remove_quest_markers.sql | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/sql/world/base/optional_remove_quest_markers.sql b/sql/world/base/optional_remove_quest_markers.sql index a7a9f07..7aef5ff 100644 --- a/sql/world/base/optional_remove_quest_markers.sql +++ b/sql/world/base/optional_remove_quest_markers.sql @@ -1,7 +1,9 @@ -/* These commands will remove quest markers so that player need to read quest description and think about it. These markers were added in late WotLK. */ -/* This is all commented out by default because there are many players who will not like this change! Uncomment and run this file to remove the quest markers. */ +/* These commands will remove quest markers from the map so that player need to read quest description. These markers were added in late WotLK. */ +/* This is the optional file with the most differing opinions from players on whether to enable or disable - older versions of the module had it disabled + by default. Because the opinion is so mixed, I have changed it to be enabled by default, as this is the most accurate to pre-3.2 WoW and the quests + were designed to be played without markers. But please feel free to comment out or delete this file if you prefer to have them! */ -# DELETE FROM `gameobject_questitem`; -# DELETE FROM `quest_poi`; -# DELETE FROM `quest_poi_points`; -# DELETE FROM `creature_questitem`; \ No newline at end of file +DELETE FROM `gameobject_questitem` WHERE `GameObjectEntry` BETWEEN 32 AND 201937; +DELETE FROM `quest_poi` WHERE `QuestID` BETWEEN 1 AND 25495; +DELETE FROM `quest_poi_points` WHERE `QuestID` BETWEEN 1 AND 25495; +DELETE FROM `creature_questitem` WHERE `CreatureEntry` BETWEEN 3 AND 39819;