From 4e885b7e5407845495fe709991325023f493f0dc Mon Sep 17 00:00:00 2001 From: Samsequel <20357406+Samsequel@users.noreply.github.com> Date: Mon, 24 Jul 2023 14:50:52 +0200 Subject: [PATCH 1/2] fix(DB/Loot): HC ramparts chest should drop a badge of justice (#16807) * fix(DB/Loot): HC ramparts chest should drop a badge of justice * typo * comment --- data/sql/updates/pending_db_world/rampartshcbadge.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rampartshcbadge.sql diff --git a/data/sql/updates/pending_db_world/rampartshcbadge.sql b/data/sql/updates/pending_db_world/rampartshcbadge.sql new file mode 100644 index 000000000..3d883407f --- /dev/null +++ b/data/sql/updates/pending_db_world/rampartshcbadge.sql @@ -0,0 +1,4 @@ + -- +DELETE FROM `gameobject_loot_template` WHERE (`Entry` = 21764) AND (`Item` IN (29434)); +INSERT INTO `gameobject_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES +(21764, 29434, 0, 100, 0, 1, 0, 1, 1, 'Badge of Justice'); From bc669a15bc888132045c1c15f6d635f3decf105a Mon Sep 17 00:00:00 2001 From: AzerothCoreBot Date: Mon, 24 Jul 2023 12:53:21 +0000 Subject: [PATCH 2/2] chore(DB): import pending files Referenced commit(s): 4e885b7e5407845495fe709991325023f493f0dc --- .../rampartshcbadge.sql => db_world/2023_07_24_00.sql} | 1 + 1 file changed, 1 insertion(+) rename data/sql/updates/{pending_db_world/rampartshcbadge.sql => db_world/2023_07_24_00.sql} (87%) diff --git a/data/sql/updates/pending_db_world/rampartshcbadge.sql b/data/sql/updates/db_world/2023_07_24_00.sql similarity index 87% rename from data/sql/updates/pending_db_world/rampartshcbadge.sql rename to data/sql/updates/db_world/2023_07_24_00.sql index 3d883407f..3d0e8c11c 100644 --- a/data/sql/updates/pending_db_world/rampartshcbadge.sql +++ b/data/sql/updates/db_world/2023_07_24_00.sql @@ -1,3 +1,4 @@ +-- DB update 2023_07_23_00 -> 2023_07_24_00 -- DELETE FROM `gameobject_loot_template` WHERE (`Entry` = 21764) AND (`Item` IN (29434)); INSERT INTO `gameobject_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES