From 6991c7ae4fcd80326c6887a1482e9269c28f2968 Mon Sep 17 00:00:00 2001 From: Grimfeather <88028633+Grimfeather@users.noreply.github.com> Date: Tue, 15 Apr 2025 18:34:08 +0200 Subject: [PATCH] LBRS fixes --- sql/world/base/dungeon_blackrock_spire.sql | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/sql/world/base/dungeon_blackrock_spire.sql b/sql/world/base/dungeon_blackrock_spire.sql index f4d698e..be777ce 100644 --- a/sql/world/base/dungeon_blackrock_spire.sql +++ b/sql/world/base/dungeon_blackrock_spire.sql @@ -17,4 +17,13 @@ UPDATE `gameobject` SET `animprogress`=100, `state`=1 WHERE `id`=175531; UPDATE `gameobject` SET `animprogress`=100, `state`=1 WHERE `id`=175532; -- Doodad_DarkIronBrazier06 -UPDATE `gameobject` SET `animprogress`=100, `state`=1 WHERE `id`=175533; \ No newline at end of file +UPDATE `gameobject` SET `animprogress`=100, `state`=1 WHERE `id`=175533; + + +/* important blackrock documents (item 12562) is currently a dropped item. it shouldn't be. +this item can be found as a lootable scroll on the ground within LBRS. */ +DELETE FROM `creature_loot_template` WHERE `Item` = 12562; + +/* gemstones shouldn't have 100% drop rate. should be around 33%. +exact rates unknown. wowhead's listed drop rates aren't correct. */ +UPDATE `creature_loot_template` SET `Chance` = 33 WHERE `Item` IN (12335, 12336, 12337);