What's new

Fixes ItemID: 6464 Wailing Essence dropping when you do not have the quest

mastermind

Silver Supporter
Senior User
188
2017
13
Location
PA, USA
Set the item chance to a negative (quest drop) value. May or may not need condition table entries.


Code:
-- --------------------------------------------------------------------------------------------------------------------
-- Repack version:               7.0.2
-- ItemID: 6464 Wailing Essence - fixes issue for quest item dropping even if you do not have the quest.
-- QuestID 1491: Smart Drinks -  This is an obsolete quest
-- --------------------------------------------------------------------------------------------------------------------
UPDATE `creature_loot_template` SET `ChanceOrQuestChance` = -40.4 WHERE `entry` = 3638 AND `item` = 6464;
 
Top