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:
dillyns
2021-06-18 04:27:11 -04:00
committed by GitHub
parent 016e7427d5
commit f8c098f39c

View File

@@ -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;