diff options
author | Trista <aconstantgoal@abv.bg> | 2013-03-01 08:40:21 +0200 |
---|---|---|
committer | Trista <aconstantgoal@abv.bg> | 2013-03-01 09:33:52 +0200 |
commit | 4f40dad714ffbc73f2ae3c3ee1236dffb5a92811 (patch) | |
tree | 8c33f52a7c9ae12c3dcc39494546d98ed8ad489c /src | |
parent | 3efe44eb851bc1866431101505ece13f8cce888e (diff) |
Scripts/Eye of Eternity: Surge of Power (25 man)
* I have no idea how these breaks were removed, but it was breaking the whole mechanic.
* Also fix some slight chance for fail of transitioning p II -> p III
* Surge of Power (25 man) still needs to get fixed some weird facing and warnings aren't always sent for some reason
Diffstat (limited to 'src')
-rw-r--r-- | src/server/scripts/Northrend/Nexus/EyeOfEternity/boss_malygos.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/server/scripts/Northrend/Nexus/EyeOfEternity/boss_malygos.cpp b/src/server/scripts/Northrend/Nexus/EyeOfEternity/boss_malygos.cpp index b258be20feb..a47bdcd3263 100644 --- a/src/server/scripts/Northrend/Nexus/EyeOfEternity/boss_malygos.cpp +++ b/src/server/scripts/Northrend/Nexus/EyeOfEternity/boss_malygos.cpp @@ -439,12 +439,16 @@ public: { case DATA_LAST_OVERLOAD_GUID: _arcaneOverloadGUID = guid; + break; case DATA_FIRST_SURGE_TARGET_GUID: _firstSelectedSurgeTargetGUID = guid; + break; case DATA_SECOND_SURGE_TARGET_GUID: _secondSelectedSurgeTargetGUID = guid; + break; case DATA_THIRD_SURGE_TARGET_GUID: _thirdSelectedSurgeTargetGUID = guid; + break; } } @@ -886,7 +890,8 @@ public: } break; case EVENT_PATHING_AROUND_PLATFORM: - DoAction(ACTION_CYCLIC_MOVEMENT); + if (!_performingSurgeOfPower && !_performingDestroyPlatform) + DoAction(ACTION_CYCLIC_MOVEMENT); break; case EVENT_MOVE_TO_POINT_SURGE_P_TWO: if (!_performingDestroyPlatform) |