From 2c7df906f3f7b96b158753cc655b08563041ad05 Mon Sep 17 00:00:00 2001 From: Asthalor <87535580+Asthalor@users.noreply.github.com> Date: Sat, 9 Oct 2021 00:09:25 +0200 Subject: [PATCH] fix(Gameobject/Loot): Fixed loot chance of Giant Clams (#8279) * Fixed Giant Clam Meat not being possible to loot. --- .../updates/pending_db_world/rev_1633435634247708496.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1633435634247708496.sql diff --git a/data/sql/updates/pending_db_world/rev_1633435634247708496.sql b/data/sql/updates/pending_db_world/rev_1633435634247708496.sql new file mode 100644 index 000000000..9357a3429 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1633435634247708496.sql @@ -0,0 +1,9 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1633435634247708496'); + +-- Giant Clam(2264) Vile reef loot fixes + +-- Increased the loot chance for Blue Pearl(4611) to 100% +UPDATE `gameobject_loot_template` SET `Chance` = 100 WHERE (`Entry` = 2264) AND (`Item` = 4611); +-- Increased the loot chance for Giant Clam Meat(4655) to 35% and moved to another group id as the groupid 2 is always Blue Pearl +UPDATE `gameobject_loot_template` SET `Chance` = 35, `GroupId` = 1 WHERE (`Entry` = 2264) AND (`Item` = 4655); +