From 1b79b61f384f8a6cba157198fd5307f6e55e83d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=83=91=E4=BD=A9=E8=8C=B9?= Date: Tue, 3 May 2022 14:45:38 -0600 Subject: [PATCH] Remove TBC cooking catch-up item from TBC pre-60 zones --- sql/world/base/vanilla_vendors.sql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sql/world/base/vanilla_vendors.sql b/sql/world/base/vanilla_vendors.sql index a0b7c1f..76fe085 100644 --- a/sql/world/base/vanilla_vendors.sql +++ b/sql/world/base/vanilla_vendors.sql @@ -3463,4 +3463,6 @@ INSERT INTO `npc_vendor` (`entry`, `item`, `maxcount`, `incrtime`) VALUES (10364 DELETE FROM `npc_vendor` WHERE `entry` = 13432 AND `item` = 17195; INSERT INTO `npc_vendor` (`entry`, `item`, `maxcount`, `incrtime`) VALUES (13432, 17195, 0, 0); +/* 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;