diff options
| author | Vincent-Michael <Vincent_Michael@gmx.de> | 2014-07-24 18:44:10 +0200 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2025-09-27 19:56:44 +0200 |
| commit | 80938ba13d92516d9fac988e018869a049830a5b (patch) | |
| tree | 18e73acdd16338e4ae4ea7dd815f5d9d4cb53321 /src/server/scripts | |
| parent | 691ee639b886a3ff5093abf6f33878d498dc5d67 (diff) | |
Core: Add GetFallTime() to MovementInfo
(cherry picked from commit 339574e2fdcd654280cd06a38466cab44eab5133)
Diffstat (limited to 'src/server/scripts')
| -rw-r--r-- | src/server/scripts/Northrend/IsleOfConquest/isle_of_conquest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Northrend/IsleOfConquest/isle_of_conquest.cpp b/src/server/scripts/Northrend/IsleOfConquest/isle_of_conquest.cpp index 29ec0598bdd..df5e4641552 100644 --- a/src/server/scripts/Northrend/IsleOfConquest/isle_of_conquest.cpp +++ b/src/server/scripts/Northrend/IsleOfConquest/isle_of_conquest.cpp @@ -157,7 +157,7 @@ class spell_ioc_parachute_ic : public AuraScript { PreventDefaultAction(); if (Player* target = GetTarget()->ToPlayer()) - if (target->m_movementInfo.fallTime > 2000 && !target->GetTransport()) + if (target->m_movementInfo.GetFallTime() > 2000 && !target->GetTransport()) target->CastSpell(target, SPELL_PARACHUTE_IC, true); } |
