From 8876e26d54af61f085988a9c49dce37b7c1c9b79 Mon Sep 17 00:00:00 2001 From: Azcobu <81782124+Azcobu@users.noreply.github.com> Date: Wed, 7 Jul 2021 20:51:11 +0930 Subject: [PATCH] fix(DB/Loot): Limit maximum Darkclaw Lobster catches (#6687) --- .../sql/updates/pending_db_world/rev_1625291253501808914.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1625291253501808914.sql diff --git a/data/sql/updates/pending_db_world/rev_1625291253501808914.sql b/data/sql/updates/pending_db_world/rev_1625291253501808914.sql new file mode 100644 index 000000000..2a40c1bbc --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1625291253501808914.sql @@ -0,0 +1,5 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1625291253501808914'); + +DELETE FROM `reference_loot_template` WHERE `Entry` = 11105 AND `Item` = 13888; +INSERT INTO `reference_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES +(11105, 13888, 0, 0, 0, 1, 1, 1, 1, 'Darkclaw Lobster');