From 7f7e21502d997e271c8e6515ce0593127dbcdb9f Mon Sep 17 00:00:00 2001 From: Grimfeather <88028633+Grimfeather@users.noreply.github.com> Date: Thu, 23 Oct 2025 02:49:27 +0200 Subject: [PATCH] Update zone_westfall.sql (#822) quest line 'A Swift Message' should be for available for humans only. --- data/sql/world/base/zone_westfall.sql | 3 +++ 1 file changed, 3 insertions(+) diff --git a/data/sql/world/base/zone_westfall.sql b/data/sql/world/base/zone_westfall.sql index 49563e1..098f65f 100644 --- a/data/sql/world/base/zone_westfall.sql +++ b/data/sql/world/base/zone_westfall.sql @@ -125,3 +125,6 @@ INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_ -- Restore Defias Pillager to original Fireball spell (was nerfed in 2.3) DELETE FROM `creature_template_spell` WHERE `CreatureID` = 589 AND `Index` = 0; INSERT INTO `creature_template_spell` (`CreatureID`, `Index`, `Spell`, `VerifiedBuild`) VALUES (589, 0, 19816, 12340); + +-- Quest line 'A Swift Message' should be for humans only. +UPDATE `quest_template` SET `AllowableRaces` = 1 WHERE `ID` IN (6181, 6261, 6281, 6285);