From 851f43b0a618fa1977197d53ab005c8d0da91327 Mon Sep 17 00:00:00 2001 From: gecko32 Date: Thu, 31 May 2012 18:40:34 +0100 Subject: [PATCH] DB/Loot: Update drop chance of Ensorcelled Parchment from 0.2% to 100% Change respawn time of that chest from 2 secs to 3 minutes Closes #6445 --- .../world/2012_05_31_03_world_gameobject_loot_template.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 sql/updates/world/2012_05_31_03_world_gameobject_loot_template.sql diff --git a/sql/updates/world/2012_05_31_03_world_gameobject_loot_template.sql b/sql/updates/world/2012_05_31_03_world_gameobject_loot_template.sql new file mode 100644 index 00000000000..5dcedaaf342 --- /dev/null +++ b/sql/updates/world/2012_05_31_03_world_gameobject_loot_template.sql @@ -0,0 +1,4 @@ +-- Update drop chance of Ensorcelled Parchment from 0.2% to 100% +UPDATE `gameobject_loot_template` SET `ChanceOrQuestChance`=100 WHERE `entry`=1570 AND `item`=3706; +-- Change spawntime from 2 secs to 3 minutes +UPDATE `gameobject` SET `spawntimesecs`=180 WHERE `id`=1765;