aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorXTZGZoReX <none@none>2010-01-17 11:26:22 +0100
committerXTZGZoReX <none@none>2010-01-17 11:26:22 +0100
commit15025253c7ab70a5e85d19b6946b25742479df05 (patch)
treeeca54021e55c76d234c6dbb8a78ff78c60195fc2 /src
parentc4eb172d04252bb94d107b8fe3e9b6ad25347271 (diff)
* Fix CRLF...
--HG-- branch : trunk
Diffstat (limited to 'src')
-rw-r--r--src/bindings/scripts/scripts/northrend/naxxramas/boss_gothik.cpp8
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