From 4f4349e66f5444fbe696632e464f9458d689694f Mon Sep 17 00:00:00 2001 From: Silker <61223313+Si1ker@users.noreply.github.com> Date: Tue, 27 Oct 2020 03:05:35 -0600 Subject: [PATCH] fix(DB/creature_loot_template): Pattern: Fur Lining - Arcane Resist (#3522) --- .../pending_db_world/rev_1601361978416709800.sql | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1601361978416709800.sql diff --git a/data/sql/updates/pending_db_world/rev_1601361978416709800.sql b/data/sql/updates/pending_db_world/rev_1601361978416709800.sql new file mode 100644 index 000000000..20dee85d2 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1601361978416709800.sql @@ -0,0 +1,12 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1601361978416709800'); + +/* + * Update by Silker | | Copyright (C) +*/ + +-- Reference: http://web.archive.org/web/20150630004928/https://www.wowhead.com/item=44563/pattern-fur-lining-arcane-resist +DELETE FROM `creature_loot_template` WHERE `entry` IN (31702, 32297) AND `item` = 44563; +INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`) VALUES +(32297, 44563, 0, 0.19, 0, 1, 0, 1, 1), +(31702, 44563, 0, 0.06, 0, 1, 0, 1, 1); +