diff options
-rw-r--r-- | sql/updates/world/2013_11_25_00_world_item_loot_template.sql | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sql/updates/world/2013_11_25_00_world_item_loot_template.sql b/sql/updates/world/2013_11_25_00_world_item_loot_template.sql new file mode 100644 index 00000000000..d691be48707 --- /dev/null +++ b/sql/updates/world/2013_11_25_00_world_item_loot_template.sql @@ -0,0 +1,15 @@ +-- Fix loot for cooking book +DELETE FROM `item_loot_template` WHERE `entry` IN (46809,46810); +INSERT INTO `item_loot_template` (`entry`,`item`,`ChanceOrQuestChance`,`lootmode`,`groupid`,`mincountOrRef`,`maxcount`) VALUES +-- Alliance book +(46809,44861,100,1,0,1,1), -- Recipe: Slow-Roasted Turkey +(46809,44859,100,1,0,1,1), -- Recipe: Candied Sweet Potato +(46809,44858,100,1,0,1,1), -- Recipe: Cranberry Chutney +(46809,44862,100,1,0,1,1), -- Recipe: Pumpkin Pie +(46809,44860,100,1,0,1,1), -- Recipe: Spice Bread Stuffing +-- Horde book +(46810,46806,100,1,0,1,1), -- Recipe: Slow-Roasted Turkey +(46810,46805,100,1,0,1,1), -- Recipe: Candied Sweet Potato +(46810,46804,100,1,0,1,1), -- Recipe: Cranberry Chutney +(46810,46807,100,1,0,1,1), -- Recipe: Pumpkin Pie +(46810,46803,100,1,0,1,1); -- Recipe: Spice Bread Stuffing |