From 6f8bcf8108f7bbc7f2fec9f758996bb50716837c Mon Sep 17 00:00:00 2001 From: Ovahlord Date: Mon, 8 Mar 2021 23:29:18 +0100 Subject: [PATCH] DB/Westfall: added phasing entry and condition for phase 226 and added missing quest id for the burning skybox aura for Sentinel Hill * moved Embers to the correct phase --- sql/updates/world/4.3.4/2021_03_08_02_world.sql | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 sql/updates/world/4.3.4/2021_03_08_02_world.sql diff --git a/sql/updates/world/4.3.4/2021_03_08_02_world.sql b/sql/updates/world/4.3.4/2021_03_08_02_world.sql new file mode 100644 index 00000000000..ba14641f7f0 --- /dev/null +++ b/sql/updates/world/4.3.4/2021_03_08_02_world.sql @@ -0,0 +1,10 @@ +UPDATE `gameobject` SET `PhaseId`= 226 WHERE `guid`= 222402; +UPDATE `spell_area` SET `quest_start`= 26322 WHERE `spell`= 80005 AND `area`= 108; + +DELETE FROM `phase_area` WHERE `AreaId`= 108; +INSERT INTO `phase_area` (`AreaId`, `PhaseId`, `Comment`) VALUES +(108, 226, 'Sentinel Hill - Rise of the Brotherhood'); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`= 26 AND `SourceEntry`= 108; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `ConditionTypeOrReference`, `ConditionValue1`, `NegativeCondition`, `Comment`, `ScriptName`) VALUES +(26, 226, 108, 8, 26322, 0, 'Phase 226: active when rewarded quest 26322', '');