aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoroffl <offl@users.noreply.github.com>2020-05-02 17:43:13 +0200
committerShauren <shauren.trinity@gmail.com>2022-01-01 23:51:01 +0100
commitf0583eef7349d5a47fc7b86b8611f1f029406338 (patch)
tree4f4d7e420fb36385b9976920ac7e4f87d2e967d3
parentb8e1de0f929598c2ebb8da2ee3de99f91be43d14 (diff)
DB/Loot: Add missing bandages to Arathi Basin care packages
Closes #24533 (cherry picked from commit 4a8382d9059186b7e5c4132f86b2fb75dcc2cc35)
-rw-r--r--sql/updates/world/master/2022_01_01_44_world_2020_05_02_00_world.sql9
1 files changed, 9 insertions, 0 deletions
diff --git a/sql/updates/world/master/2022_01_01_44_world_2020_05_02_00_world.sql b/sql/updates/world/master/2022_01_01_44_world_2020_05_02_00_world.sql
new file mode 100644
index 00000000000..e91401a3510
--- /dev/null
+++ b/sql/updates/world/master/2022_01_01_44_world_2020_05_02_00_world.sql
@@ -0,0 +1,9 @@
+-- Add missing bandages to Arathi Basin care packages
+DELETE FROM `item_loot_template` WHERE `Item` IN (20065,20066,20067);
+INSERT INTO `item_loot_template` (`Entry`,`Item`,`Reference`,`Chance`,`QuestRequired`,`LootMode`,`GroupId`,`MinCount`,`MaxCount`) VALUES
+(20230,20065,0,100,0,1,0,20,20),
+(20236,20065,0,100,0,1,0,20,20),
+(20228,20066,0,100,0,1,0,20,20),
+(20231,20066,0,100,0,1,0,20,20),
+(20229,20067,0,100,0,1,0,20,20),
+(20233,20067,0,100,0,1,0,20,20);