fix(DB/Fishing): Fix db errors (#1828)

- 3479 (The Veiled Sea is missing in table skill fishing_base_level which giving us sometimes errors in DB logs).
Based on some informations, since it's near Desolace and This zone is part of Ashenvale which is Level 31-40 zones:, i'm importing there skill 225 too.
- Also importing some loot related to this area
This commit is contained in:
Poszer
2019-05-18 00:53:31 +02:00
committed by GitHub
parent f24b93973f
commit 24307697eb

View File

@@ -0,0 +1,13 @@
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1557740416904830700');
DELETE FROM `skill_fishing_base_level` WHERE `entry`= 3479;
INSERT INTO `skill_fishing_base_level` (`entry`, `skill`) VALUES ('3479', '225');
DELETE FROM `fishing_loot_template` WHERE `Entry`=3479;
INSERT INTO `fishing_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES
(3479, 6352, 0, 0.4, 0, 1, 0, 1, 1, NULL),
(3479, 6359, 0, 15, 0, 1, 0, 1, 1, NULL),
(3479, 6360, 0, 0.5, 0, 1, 0, 1, 1, NULL),
(3479, 6354, 0, 0.4, 0, 1, 0, 1, 1, NULL),
(3479, 6358, 0, 25, 0, 1, 0, 1, 1, NULL),
(3479, 6361, 0, 58.8, 0, 1, 0, 1, 1, NULL),
(3479, 6307, 0, 0.4, 0, 1, 0, 1, 1, NULL);