mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-22 02:04:52 +01:00
Fix Beacon Of Light: not applying when not in LoS. Patch by beberlescaraber (adapted to latest rev).
Fixes issue #921. --HG-- branch : trunk
This commit is contained in:
@@ -6529,10 +6529,13 @@ bool Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, AuraEffect* trigger
|
||||
// check if it was heal by paladin which casted this beacon of light
|
||||
if (Aura const * aura = beaconTarget->GetAura(53563, pVictim->GetGUID()))
|
||||
{
|
||||
basepoints0 = damage;
|
||||
triggered_spell_id = 53654;
|
||||
target = beaconTarget;
|
||||
break;
|
||||
if (beaconTarget->IsWithinLOSInMap(pVictim))
|
||||
{
|
||||
basepoints0 = damage;
|
||||
triggered_spell_id = 53654;
|
||||
target = beaconTarget;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user