diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/bindings/scripts/scripts/northrend/naxxramas/boss_gothik.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bindings/scripts/scripts/northrend/naxxramas/boss_gothik.cpp b/src/bindings/scripts/scripts/northrend/naxxramas/boss_gothik.cpp index 24d535f7782..3b3d3b50992 100644 --- a/src/bindings/scripts/scripts/northrend/naxxramas/boss_gothik.cpp +++ b/src/bindings/scripts/scripts/northrend/naxxramas/boss_gothik.cpp @@ -126,12 +126,12 @@ const float PosGroundDeadSide[4] = {2693.5, -3334.6, 267.68, 4.67}; const float PosPlatform[4] = {2640.5, -3360.6, 285.26, 0}; // Predicate function to check that the r efzr unit is NOT on the same side as the source. -struct NotOnSameSide : public std::unary_function<Unit *, bool> {
- bool m_inLiveSide;
- NotOnSameSide(Unit *pSource) : m_inLiveSide(IN_LIVE_SIDE(pSource)) {}
+struct NotOnSameSide : public std::unary_function<Unit *, bool> { + bool m_inLiveSide; + NotOnSameSide(Unit *pSource) : m_inLiveSide(IN_LIVE_SIDE(pSource)) {} bool operator() (const Unit *pTarget) { return (m_inLiveSide != IN_LIVE_SIDE(pTarget)); - }
+ } }; struct TRINITY_DLL_DECL boss_gothikAI : public BossAI |