diff options
author | SnapperRy <snapperryen@gmail.com> | 2016-07-10 00:50:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-10 00:50:40 +0200 |
commit | a1a7bca18194842690c267418c140ee25af9d6f0 (patch) | |
tree | 4efc15b9d91db127db2c8df184a929e18c6b7dcf | |
parent | 8211266f9b02615a082fcbe7873e50a78fadec18 (diff) |
DB/Loot: those items should only be dropped by gameobjects
Items 'Silithid Egg', 'Lorgalis Manuscript', 'Broken Tears' AND 'Spotted Hippogryph Down' should not be dropped by creatures
-rw-r--r-- | sql/updates/world/3.3.5/2016_07_10_00_world.sql | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2016_07_10_00_world.sql b/sql/updates/world/3.3.5/2016_07_10_00_world.sql new file mode 100644 index 00000000000..06f6e89de2d --- /dev/null +++ b/sql/updates/world/3.3.5/2016_07_10_00_world.sql @@ -0,0 +1,3 @@ +-- +DELETE FROM `creature_loot_template` WHERE `Item` IN (5058, 5359, 6083, 33348); +UPDATE `creature_template` SET `lootid`=0 WHERE `entry`=4661; |