
Soulfire Wand projectiles not affected by Archangel's Sight on players
TillRauch opened this issue ยท 3 comments
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.
add minecraft:player
to https://github.com/Alexthw46/Eidolon-Repraised/blob/1.20.1-Neo/src/generated/resources/data/eidolon/tags/entity_types/trackable.json using a datapack
After some digging in the code I believe this is due to this function
which gets used here
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.