diff options
| author | kaelima <jeppo_meyer@msn.com> | 2011-06-01 20:29:29 +0200 |
|---|---|---|
| committer | kaelima <jeppo_meyer@msn.com> | 2011-06-01 20:29:29 +0200 |
| commit | 3078866968e60df15cd1a5bc3a1f4d13e2d1001f (patch) | |
| tree | 2c02ef5d9f0cd14e268d617b175e40c514666f13 | |
| parent | 251aea4900044c6a543af6930547426567bdd895 (diff) | |
DB/Quest: The Stave of Equinex (2879)
Fixes #1679
| -rw-r--r-- | sql/updates/world/2011_06_01_02_world_gameobject_template.sql | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sql/updates/world/2011_06_01_02_world_gameobject_template.sql b/sql/updates/world/2011_06_01_02_world_gameobject_template.sql new file mode 100644 index 00000000000..2108afe6aba --- /dev/null +++ b/sql/updates/world/2011_06_01_02_world_gameobject_template.sql @@ -0,0 +1,9 @@ +-- Set proper flags for Flame of Imbel, Flame of Lahassa, Flame of Samha and Flame of Byltan +UPDATE `gameobject_template` SET `flags`=`flags`&~4 WHERE `entry` IN (142185,142187,142186,142188); +-- Set loot template for the gameobjects above +DELETE FROM `gameobject_loot_template` WHERE `entry` IN (6711,6709,6708,6710); +INSERT INTO `gameobject_loot_template` (`entry`,`item`,`ChanceOrQuestChance`,`lootmode`,`groupid`,`mincountOrRef`,`maxcount`) VALUES +(6711,9258,100,1,0,1,1), +(6709,9256,100,1,0,1,1), +(6708,9255,100,1,0,1,1), +(6710,9257,100,1,0,1,1); |
