mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Core/Spells: Effect leap back fix (#18057)
* Fixed unintentional typo? Seemed to fix the issues related to the effect for the spells I tried. Sometimes the caster triggers leapback onto targets, and with the old code, it instead made the caster leap back instead of its targets
This commit is contained in:
@@ -4440,7 +4440,7 @@ void Spell::EffectLeapBack(SpellEffIndex /*effIndex*/)
|
||||
float speedxy = effectInfo->MiscValue / 10.f;
|
||||
float speedz = damage / 10.f;
|
||||
//1891: Disengage
|
||||
m_caster->JumpTo(speedxy, speedz, m_spellInfo->SpellIconID != 1891);
|
||||
unitTarget->JumpTo(speedxy, speedz, m_spellInfo->SpellIconID != 1891);
|
||||
}
|
||||
|
||||
void Spell::EffectQuestClear(SpellEffIndex /*effIndex*/)
|
||||
|
||||
Reference in New Issue
Block a user