fix(DB/Loot): correct Stonemason's Cloak drops (#6711)

This commit is contained in:
Azcobu
2021-07-07 23:00:31 +09:30
committed by GitHub
parent ddcdac760f
commit b062d4a3b7

View File

@@ -0,0 +1,10 @@
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1625379465170274070');
-- Removes Stonemason's Cloak from RLT 24078'
DELETE FROM `reference_loot_template` WHERE `Entry` = 24078 AND `Item` = 1930;
-- Adds Stonemason's Cloak to Defias Miner with 3% drop rate
DELETE FROM `creature_loot_template` WHERE `Entry` = 598 AND `Item` = 1930;
INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES
(598, 1930, 0, 3, 0, 1, 1, 1, 1, 'Defias Miner - Stonemason\'s Cloak');