-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix cancellation of PlayerTrackEntityEvent #12320
base: main
Are you sure you want to change the base?
Conversation
This reads like it'll start spamming this event every time, attempting to track the player on every tick. |
Ah yes this is correct. I will add a check if the entity is currently tracked before calling the event. |
Hm which will still spam the event when the entity is not tracked. But I think this is how this event is supposed to work. |
Eh, I think the proper solution is the one we wanted for a while, converting seenBy into a Map that attaches some tracking config. That way, the entity knows vanilla would track it, but we can prevent e.g. packets being sent. This would also be a massive performance boost to the API canSee/hide/show entity stuff. |
Yea, as then we can mark it as "tracked" but pretend it isn't, making it easy to allow API to retrack and being able to inline a bunch of stuff much easier rather than several layers of indirection in order to check if we can send to who and what |
I do agree that this system in general can be improved. The |
Cancelling the PlayerTrackEntityEvent did not remove the player from the
seenBy
set which leads to updates being broadcast despite the entity not being present on the client and more crucially the entity can only be tracked again by first failing to meet any condition to be tracked.