mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-23 18:36:31 +01:00
DB/Loot: Bloodfen Feathers should also drop from other Bloodfen Raptors
fixes #3842
This commit is contained in:
committed by
ZxBiohazardZx
parent
5e7b4e867e
commit
7dec496e18
@@ -1,5 +1,5 @@
|
||||
-- Remove Manual: Netherweave Bandage & and Manual: Heavy Netherweave Bandage from vendors (Patch 3.1.0)
|
||||
DELETE FROM npc_vendor WHERE item IN (21992,21991);
|
||||
DELETE FROM `npc_vendor` WHERE `item` IN (21992,21991);
|
||||
-- Update reqskillvalue for Netherweave Bandage & Heavy Netherweave Bandage (Patch 3.1.0)
|
||||
UPDATE npc_trainer SET reqskillvalue=300 WHERE spell=27032;
|
||||
UPDATE npc_trainer SET reqskillvalue=330 WHERE spell=27033;
|
||||
UPDATE `npc_trainer` SET `reqskillvalue`=300 WHERE spell=27032;
|
||||
UPDATE `npc_trainer` SET `reqskillvalue`=330 WHERE spell=27033;
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
DELETE FROM `creature_loot_template` WHERE `entry` IN (4356,4357) AND `item`=33085;
|
||||
INSERT INTO `creature_loot_template` (`entry`,`item`,`ChanceOrQuestChance`,`lootmode`,`groupid`,`mincountOrRef`,`maxcount`) VALUES
|
||||
(4356,33085,-37,1,0,1,1), -- Feathers drop from Bloodfen Razormaw
|
||||
(4357,33085,-33,1,0,1,1); -- Feathers drop from Bloodfen Lashtail
|
||||
Reference in New Issue
Block a user