From abfe8eb8e720baf34d482b298322ac66d233322a Mon Sep 17 00:00:00 2001 From: Aokromes Date: Thu, 30 Nov 2017 19:25:27 +0100 Subject: [PATCH] DB/Player: adds the missing skills to all classes By Ovahlord --- sql/updates/world/4.3.4/2017_11_30_17_world.sql | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 sql/updates/world/4.3.4/2017_11_30_17_world.sql diff --git a/sql/updates/world/4.3.4/2017_11_30_17_world.sql b/sql/updates/world/4.3.4/2017_11_30_17_world.sql new file mode 100644 index 00000000000..c61d90c14cc --- /dev/null +++ b/sql/updates/world/4.3.4/2017_11_30_17_world.sql @@ -0,0 +1,14 @@ +-- +DELETE FROM `playercreateinfo_skills` WHERE `skill` IN (795, 796, 797, 798, 799, 800, 801, 802, 803, 804); +INSERT INTO `playercreateinfo_skills` (`raceMask`, `classMask`, `skill`, `comment`) VALUES +(0, 4, 795, 'Hunter - General'), +(0, 32, 796, 'Death Knight - General'), +(0, 8, 797, 'Rogue - General'), +(0, 1024, 798, 'Druid - General'), +(0, 128, 799, 'Mage - General'), +(0, 2, 800, 'Paladin - General'), +(0, 64, 801, 'Shaman - General'), +(0, 256, 802, 'Warlock - General'), +(0, 1, 803, 'Warrior - General'), +(0, 16, 804, 'Priest - General'); +