diff options
Diffstat (limited to 'src/server/scripts')
-rw-r--r-- | src/server/scripts/Northrend/IcecrownCitadel/boss_lord_marrowgar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Northrend/IcecrownCitadel/boss_lord_marrowgar.cpp b/src/server/scripts/Northrend/IcecrownCitadel/boss_lord_marrowgar.cpp index e531e6d1980..e87fc08d8a9 100644 --- a/src/server/scripts/Northrend/IcecrownCitadel/boss_lord_marrowgar.cpp +++ b/src/server/scripts/Northrend/IcecrownCitadel/boss_lord_marrowgar.cpp @@ -242,7 +242,7 @@ struct boss_lord_marrowgar : public BossAI { if (a->GetMovementGeneratorType() == POINT_MOTION_TYPE) { - PointMovementGenerator<Creature> const* pointMovement = dynamic_cast<PointMovementGenerator<Creature> const*>(a); + PointMovementGenerator const* pointMovement = dynamic_cast<PointMovementGenerator const*>(a); return pointMovement && pointMovement->GetId() == POINT_TARGET_BONESTORM_PLAYER; } return false; |