From 04004fc61f77d7df3fc0ca9f6ccc302e43457699 Mon Sep 17 00:00:00 2001 From: Eddy Vega <61223313+Si1ker@users.noreply.github.com> Date: Sun, 19 Jul 2026 07:03:48 -0600 Subject: [PATCH] fix(Scripts/Ulduar): Adjust Living Constellation's Arcane Barrage (#26681) Co-authored-by: sogladev --- .../updates/pending_db_world/rev_1784454610015867838.sql | 2 ++ .../Northrend/Ulduar/Ulduar/boss_algalon_the_observer.cpp | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) create mode 100644 data/sql/updates/pending_db_world/rev_1784454610015867838.sql diff --git a/data/sql/updates/pending_db_world/rev_1784454610015867838.sql b/data/sql/updates/pending_db_world/rev_1784454610015867838.sql new file mode 100644 index 000000000..592895576 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1784454610015867838.sql @@ -0,0 +1,2 @@ +-- +UPDATE `creature_template` SET `CreatureImmunitiesId` = -280 WHERE (`entry` IN (33052, 33116)); diff --git a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_algalon_the_observer.cpp b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_algalon_the_observer.cpp index 5e4f66eac..1be8c9140 100644 --- a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_algalon_the_observer.cpp +++ b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_algalon_the_observer.cpp @@ -949,7 +949,7 @@ struct npc_living_constellation : public ScriptedAI void Reset() override { events.Reset(); - events.ScheduleEvent(EVENT_ARCANE_BARRAGE, 2500ms); + events.ScheduleEvent(EVENT_ARCANE_BARRAGE, 5s); _isActive = false; } @@ -1007,8 +1007,8 @@ struct npc_living_constellation : public ScriptedAI switch (events.ExecuteEvent()) { case EVENT_ARCANE_BARRAGE: - me->CastCustomSpell(SPELL_ARCANE_BARRAGE, SPELLVALUE_MAX_TARGETS, 1, (Unit*)nullptr, true); - events.Repeat(2500ms); + me->CastCustomSpell(SPELL_ARCANE_BARRAGE, SPELLVALUE_MAX_TARGETS, 1, (Unit*)nullptr, false); + events.Repeat(5s); break; case EVENT_RESUME_UPDATING: events.SetPhase(0);