diff options
| author | offl <offl@users.noreply.github.com> | 2020-03-03 21:00:50 +0100 |
|---|---|---|
| committer | Killyana <morphone1@gmail.com> | 2020-03-03 21:00:50 +0100 |
| commit | 961adea3727e32c068245735e76db2445c2fcd2d (patch) | |
| tree | b82973f2eec70704ddf002f46e914f728d7c4057 | |
| parent | 2032ade386fd5c54cc4d3b3a838197ebcb479885 (diff) | |
DB/Loot: Add missing item to Reinforced Junkbox
Closes #19776
| -rw-r--r-- | sql/updates/world/master/2020_02_29_00_world.sql | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/updates/world/master/2020_02_29_00_world.sql b/sql/updates/world/master/2020_02_29_00_world.sql new file mode 100644 index 00000000000..6dc08ca9e4b --- /dev/null +++ b/sql/updates/world/master/2020_02_29_00_world.sql @@ -0,0 +1,5 @@ +-- +DELETE FROM `item_loot_template` WHERE `Entry` = 43575 AND `Item` IN (43611,43612,43613); +INSERT INTO `item_loot_template` (`Entry`,`Item`,`Reference`,`Chance`,`QuestRequired`,`LootMode`,`GroupId`,`MinCount`,`MaxCount`) VALUES +(43575,43611,0,0.05,0,1,1,1,1), +(43575,43613,0,0.05,0,1,1,1,1); |
