Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions data/sql/updates/pending_db_world/rev_1770249033416011200.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
--
DELETE FROM `spell_target_position` WHERE `ID` = 33244;
INSERT INTO `spell_target_position` (`ID`, `MapID`, `PositionX`, `PositionY`, `PositionZ`, `Orientation`, `VerifiedBuild`) VALUES
(33244, 550, 432.74, -373.645, 18.0138, 1.39626, 50791);
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ enum Spells
SPELL_PSYCHIC_SCREAM = 34322,
SPELL_VOID_BOLT = 39329,
SPELL_TRUE_BEAM = 33365,
SPELL_TELEPORT_START_POSITION = 33244,
SPELL_TELEPORT_START_POSITION = 33244, // Serverside
};

enum Misc
Expand Down Expand Up @@ -153,7 +153,7 @@ struct boss_high_astromancer_solarian : public BossAI
{
me->SetReactState(REACT_PASSIVE);
scheduler.DelayAll(22s);
// blink to room center in this line using SPELL_TELEPORT_START_POSITION and START_POSITION_X, START_POSITION_Y, START_POSITION_Z
DoCastSelf(SPELL_TELEPORT_START_POSITION);
scheduler.Schedule(1s, [this](TaskContext)
{
for (uint8 i = 0; i < 3; ++i)
Expand Down Expand Up @@ -198,6 +198,7 @@ struct boss_high_astromancer_solarian : public BossAI
});
}).Schedule(23s, [this](TaskContext)
{
me->GetThreatMgr().ClearAllThreat();
me->SetReactState(REACT_AGGRESSIVE);
summons.DoForAllSummons([&](WorldObject* summon)
{
Expand Down
Loading