From b6dfd1e125dfe545552574e6d2713e0a3153418b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=83=91=E4=BD=A9=E8=8C=B9?= Date: Fri, 15 Sep 2023 13:52:49 -0600 Subject: [PATCH] Remove Wicked Arrow and Impact Shot from vendors --- sql/world/base/vanilla_vendors.sql | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sql/world/base/vanilla_vendors.sql b/sql/world/base/vanilla_vendors.sql index 9e61ad9..3db0d86 100644 --- a/sql/world/base/vanilla_vendors.sql +++ b/sql/world/base/vanilla_vendors.sql @@ -4349,6 +4349,9 @@ INSERT INTO `npc_vendor` (`entry`, `item`, `maxcount`, `incrtime`) VALUES (13432 /* Delete Simple Flour from TBC pre-60 vendors - they should technically have it but it is a catch-up mechanic so wait until TBC areas for it to be available */ DELETE FROM `npc_vendor` WHERE `entry` IN (17246, 16253, 16262, 16261, 16677, 17490, 16718) AND `item` = 30817; +/* Remove Wicked Arrow and Impact Shot from vendors - these skip all end-game vanilla ammo progression */ +DELETE FROM `npc_vendor` WHERE `item` IN (28060, 28053); + /* PvP Gear Vendor Rep Requirements */ REPLACE INTO conditions (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `ConditionTypeOrReference`, `ConditionValue1`, `ConditionValue2`, `comment`) VALUES (23, 13219, 17349, 5, 729, 16 + 32 + 64 + 128, 'Vanilla PvP Gear Conditions'),