diff options
author | zxbiohazardzx <zxbiohazardzx@gmail.com> | 2011-11-14 00:10:35 +0100 |
---|---|---|
committer | ZxBiohazardZx <zxbiohazardzx@gmail.com> | 2011-11-14 00:10:35 +0100 |
commit | 7dec496e1844297aab9bbc44ebf33f65e9492667 (patch) | |
tree | ffd3c2af8e353410415ccd70bab7646fb1089838 | |
parent | 5e7b4e867e1504ba97db1ccf91bfffc3364e6972 (diff) |
DB/Loot: Bloodfen Feathers should also drop from other Bloodfen Raptors
fixes #3842
-rw-r--r-- | sql/updates/world/2011_11_13_03_world_npc_trainer.sql | 6 | ||||
-rw-r--r-- | sql/updates/world/2011_11_13_04_world_creature_loot_template.sql | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/sql/updates/world/2011_11_13_03_world_npc_trainer.sql b/sql/updates/world/2011_11_13_03_world_npc_trainer.sql index e2c3e4a4e50..0db753c008b 100644 --- a/sql/updates/world/2011_11_13_03_world_npc_trainer.sql +++ b/sql/updates/world/2011_11_13_03_world_npc_trainer.sql @@ -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; diff --git a/sql/updates/world/2011_11_13_04_world_creature_loot_template.sql b/sql/updates/world/2011_11_13_04_world_creature_loot_template.sql new file mode 100644 index 00000000000..b68d12a031d --- /dev/null +++ b/sql/updates/world/2011_11_13_04_world_creature_loot_template.sql @@ -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 |