fix(DB/Loot): corrects the drop rate of Winterfall Firewater (#8016)

* fix(DB/Loot): corrects the drop rate of Winterfall Firewater

- Closes #7920

* Update rev_1632235858441614200.sql
This commit is contained in:
Jan M. D. Hansen
2021-09-27 20:58:53 +02:00
committed by GitHub
parent 7e6e083ce9
commit d614c46e41

View File

@@ -0,0 +1,19 @@
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1632235858441614200');
UPDATE
`creature_loot_template`
SET
`Chance` =
(CASE
WHEN `Entry` = 7438 THEN 7
WHEN `Entry` = 7439 THEN 7
WHEN `Entry` = 7440 THEN 8
WHEN `Entry` = 7441 THEN 8
WHEN `Entry` = 7442 THEN 8
WHEN `Entry` = 10199 THEN 7
WHEN `Entry` = 10916 THEN 6
END)
WHERE
`Item` = 12820
AND
`Entry` IN (7438, 7439, 7440, 7441, 7442, 10199, 10916);