diff options
-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 |