aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorExodius <exodius@trinity.contrib>2012-06-26 21:07:07 +0200
committerZxBiohazardZx <zxbiohazardzx@gmail.com>2012-06-26 21:07:07 +0200
commitd014f7fcedce79165d63f2796c6ea64285d74ac6 (patch)
tree06f08164f6862a41258288bc495d73d9c7e060a7
parentda8c039f0a4be24079367343fbc116cfd3ac4432 (diff)
DB/Loot: Add missing recipe and replace a furious weapon with the correct item
Closes #6925,#6924
-rw-r--r--sql/updates/world/2012_06_26_02_world_creature_loot_template.sql6
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/updates/world/2012_06_26_02_world_creature_loot_template.sql b/sql/updates/world/2012_06_26_02_world_creature_loot_template.sql
new file mode 100644
index 00000000000..3a704e61bcf
--- /dev/null
+++ b/sql/updates/world/2012_06_26_02_world_creature_loot_template.sql
@@ -0,0 +1,6 @@
+-- Replace Furious Weapon drop with drop that should be in the Cache of Living Stone
+UPDATE `reference_loot_template` SET `item` =45695 WHERE (`entry` =34361 AND `item` =45965);
+-- add missing Recipe: Mighty Shadow Protection Potion on Cultist Shard Watcher
+DELETE FROM `creature_loot_template` WHERE `entry`=32349 AND `item`=44568;
+INSERT INTO `creature_loot_template` (`entry`,`item`,`ChanceOrQuestChance`,`lootmode`,`groupid`,`mincountOrRef`,`maxcount`) VALUES
+(32349,44568,0.5,1,0,1,1);