mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-17 19:05:42 +00:00
fix(DB/loot): Prospecting Thorium doesn't always yield a gem (#6198)
Fix the grouping of thorium ore prospecting loot so you are guaranteed to get either a tbc gem or a classic gem - Closes #5781 - Closes chromiecraft/chromiecraft#600 Co-authored-by: dsegna <dsegna@users.noreply.github.com>
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1622643754073506200');
|
||||
|
||||
SET @THORIUM_ORE = 10620;
|
||||
SET @BC_GEMS = 13001;
|
||||
UPDATE `prospecting_loot_template`
|
||||
SET `GroupId` = 0
|
||||
WHERE `ENTRY` = @THORIUM_ORE AND `Reference` = @BC_GEMS;
|
||||
Reference in New Issue
Block a user