Bless & Dismissal visual lies

Started by LoveLess, March 29, 2021, 07:52:58 AM

Previous topic - Next topic

LoveLess

So currently, both Bless & Dismissal allow you to target the ground or an object. The animation plays,  a small mote flying out to that location, and then an area of effect plays. However, these spells' effects are only applied around the caster.

Can we have one or the other? The culprits are listed below and the last entry, the location, should either be GetSpellTargetLocation or GetLocation(OBJECT_SELF), not both.

ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eImpact, GetSpellTargetLocation());
oTarget = GetFirstObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_COLOSSAL, GetLocation(OBJECT_SELF));
oTarget = GetNextObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_COLOSSAL, GetLocation(OBJECT_SELF));

Tala