diff options
author | offl <offl@users.noreply.github.com> | 2020-03-03 20:51:30 +0100 |
---|---|---|
committer | Killyana <morphone1@gmail.com> | 2020-03-03 20:51:30 +0100 |
commit | cc6c27f96fbf78a981bce4030f3c2eb80855033e (patch) | |
tree | beb35c6426dbf73d178a3b70af9c170b248a7a01 | |
parent | 4c44816955b76086e0e1efe5e371fdf67333caca (diff) |
DB/Loot: Add missing item to Reinforced Junkbox
Ref #19776
-rw-r--r-- | sql/updates/world/3.3.5/2020_02_29_05_world_335.sql | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2020_02_29_05_world_335.sql b/sql/updates/world/3.3.5/2020_02_29_05_world_335.sql new file mode 100644 index 00000000000..67f6a3f997f --- /dev/null +++ b/sql/updates/world/3.3.5/2020_02_29_05_world_335.sql @@ -0,0 +1,6 @@ +-- +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,43612,0,0.05,0,1,1,1,1), +(43575,43613,0,0.05,0,1,1,1,1); |