From b28367697bb01addf463cb9a9a066c2d8e2ad279 Mon Sep 17 00:00:00 2001 From: anguaive <39011611+anguaive@users.noreply.github.com> Date: Fri, 9 Jul 2021 10:05:12 +0200 Subject: [PATCH] fix(DB/pool): remove redundant Meshlok creature pool (#6779) Pool id 1211 is redundant and it needlessly reduces the spawn chance of Meshlok. Rare creature spawn chance should be handled exclusively by SAI - Closes #6745 - Closes https://github.com/chromiecraft/chromiecraft/issues/1098 Fix by @T1ti --- data/sql/updates/pending_db_world/rev_1625601630306437708.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1625601630306437708.sql diff --git a/data/sql/updates/pending_db_world/rev_1625601630306437708.sql b/data/sql/updates/pending_db_world/rev_1625601630306437708.sql new file mode 100644 index 000000000..7692a7d1d --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1625601630306437708.sql @@ -0,0 +1,4 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1625601630306437708'); + +DELETE FROM `pool_creature` WHERE `pool_entry`=1211; +DELETE FROM `pool_template` WHERE `entry`=1211;