Eidolon : Repraised

Eidolon : Repraised

5M Downloads

Soulfire Wand projectiles not affected by Archangel's Sight on players

TillRauch opened this issue ยท 3 comments

commented

Forge Version: 47.3.5
Eidolon : Repraised Version: 0.3.8.13

When having the Archangel's Sight Ring equipped (and configured to also target players) projectiles like arrows shot from a vanilla bow will be guided towards the nearest enemy player. However, the energy bolts shot from a Soulfire Wand will not target enemy players but instead fly straight ahead.

This might be intentional but I assumed since the energy bolts do target mobs they should also target players.

commented

After some digging in the code I believe this is due to this function

private boolean shouldTrack(final Entity target) {

which gets used here
targetPredicate = spellProjectile.trackingPredicate;

never returning true if target is a player.

I am unsure how exactly to fix this. Might also be wrong in my understanding of the code.

commented

Yeah, that makes sense. Thanks