From 24307697eb60b091d67559aa6bed1844346957e0 Mon Sep 17 00:00:00 2001 From: Poszer <41213210+poszer@users.noreply.github.com> Date: Sat, 18 May 2019 00:53:31 +0200 Subject: [PATCH] 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 --- .../pending_db_world/rev_1557740416904830700.sql | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1557740416904830700.sql diff --git a/data/sql/updates/pending_db_world/rev_1557740416904830700.sql b/data/sql/updates/pending_db_world/rev_1557740416904830700.sql new file mode 100644 index 000000000..c6639f897 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1557740416904830700.sql @@ -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);