From 83e6a8d289a6aa5a16831f4e1cff3464fc43dae4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=83=91=E4=BD=A9=E8=8C=B9?= Date: Tue, 30 Aug 2022 23:41:35 -0600 Subject: [PATCH] Fix Wolves Across the Border - thanks XSNomad --- sql/world/base/zone_elwynn_forest.sql | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/sql/world/base/zone_elwynn_forest.sql b/sql/world/base/zone_elwynn_forest.sql index 1788f2e..5ffcc41 100644 --- a/sql/world/base/zone_elwynn_forest.sql +++ b/sql/world/base/zone_elwynn_forest.sql @@ -229,3 +229,16 @@ UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=3905; -- Eagan Peltskinner UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=5261; + +-- Timber Wolf +DELETE FROM `creature_loot_template` WHERE `Entry`=69 AND `Item`=750; +INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Chance`, `QuestRequired`, `MinCount`, `MaxCount`, `Comment`) VALUES (69, 750, 80, 1, 1, 1, 'Timber Wolf - Tough Wolf Meat'); + +-- Young Wolf +DELETE FROM `creature_loot_template` WHERE `Entry`=299 AND `Item`=750; +INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Chance`, `QuestRequired`, `MinCount`, `MaxCount`, `Comment`) VALUES (299, 750, 80, 1, 1, 1, 'Young Wolf - Tough Wolf Meat'); + +DELETE FROM `creature_questitem` WHERE `CreatureEntry` IN (69, 299); +INSERT INTO `creature_questitem` (`CreatureEntry`, `Idx`, `ItemId`, `VerifiedBuild`) VALUES +(69, 0, 750, 0), +(299, 0, 750, 0);