From 6bfd7838dbe5cfd383370a0fe4a990343fb1fef9 Mon Sep 17 00:00:00 2001 From: anguaive <39011611+anguaive@users.noreply.github.com> Date: Wed, 2 Jun 2021 16:55:43 +0200 Subject: [PATCH] fix(DB/loot): Clean up refs to ref table 24060 (#6072) Some creatures' loot tables mistakenly included entries that point to ref table 24060. These entries have been removed. - Closes #6042 - Closes https://github.com/chromiecraft/chromiecraft/issues/697 --- .../updates/pending_db_world/rev_1622103568572292814.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1622103568572292814.sql diff --git a/data/sql/updates/pending_db_world/rev_1622103568572292814.sql b/data/sql/updates/pending_db_world/rev_1622103568572292814.sql new file mode 100644 index 000000000..c1b4f902e --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1622103568572292814.sql @@ -0,0 +1,9 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1622103568572292814'); + +-- 118: Prowler +-- 3660: Athrikus Narassin +-- 8386: Horizon Scout Crewman +-- 10495: Diseased Ghoul +-- 11562: Drysnap Crawler +-- 11563: Drysnap Pincer +DELETE FROM `creature_loot_template` WHERE `reference` = 24060 AND `entry` IN (118, 3660, 8386, 10495, 11562, 11563);