mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-24 14:16:31 +00:00
fix(Gameobject/Loot): Fixed loot chance of Giant Clams (#8279)
* Fixed Giant Clam Meat not being possible to loot.
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user