From 2a4a2f357c109cab066683f5439612cf5e0e464b Mon Sep 17 00:00:00 2001 From: Vekt Date: Thu, 22 Jul 2021 18:53:01 +0200 Subject: [PATCH] fix(DB/Loot): correct 'Design: Ruby Serpent' loot table (#7006) --- .../updates/pending_db_world/rev_1626444381466806000.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1626444381466806000.sql diff --git a/data/sql/updates/pending_db_world/rev_1626444381466806000.sql b/data/sql/updates/pending_db_world/rev_1626444381466806000.sql new file mode 100644 index 000000000..b258cf9dd --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1626444381466806000.sql @@ -0,0 +1,8 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1626444381466806000'); + +DELETE FROM `creature_loot_template` WHERE `Entry` IN (193, 6130, 6129, 6131) AND `Item` = 21949; +INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES +(193, 21949, 0, 0.5, 0, 1, 1, 1, 1, 'Blue Dragonspawn - Design: Ruby Serpent'), +(6130, 21949, 0, 0.5, 0, 1, 1, 1, 1, 'Blue Scalebane - Design: Ruby Serpent'), +(6129, 21949, 0, 0.5, 0, 1, 1, 1, 1, 'Draconic Magelord - Design: Ruby Serpent'), +(6131, 21949, 0, 0.5, 0, 1, 1, 1, 1, 'Draconic Mageweaver - Design: Ruby Serpent');