fix(DB/creature_loot): Defias Rapier drops (#8836)
This commit is contained in:
parent
986cbf428e
commit
c5891b0b1f
1 changed files with 10 additions and 0 deletions
|
|
@ -0,0 +1,10 @@
|
|||
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1635586926158019590');
|
||||
|
||||
-- Deletes Defias Rapier from RLT 24077
|
||||
DELETE FROM `reference_loot_template` WHERE `Entry` = 24077 AND `Item` = 1925;
|
||||
|
||||
-- Adds Defias Rapier drop to Defias Watchman
|
||||
DELETE FROM `creature_loot_template` WHERE `Entry` = 1725 AND `Item` = 1925;
|
||||
INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES
|
||||
(1725, 1925, 0, 6.6, 0, 1, 1, 1, 1, 'Defias Watchman - Defias Rapier');
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue