Skip to content

Commit

Permalink
Remove local names
Browse files Browse the repository at this point in the history
  • Loading branch information
senseiwells committed Sep 23, 2024
1 parent 4c44e8e commit 220e71d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ public class NearbyEntityTrackingMixin {
)
private void onPlayerTrackingTick(
CallbackInfo ci,
@Local(name = "entry") Map.Entry<ServerPlayer, ReferenceLinkedOpenHashSet<ChunkMap.TrackedEntity>> entry,
@Local(name = "isPlayerPositionUpdated") boolean positionUpdated
@Local Map.Entry<ServerPlayer, ReferenceLinkedOpenHashSet<ChunkMap.TrackedEntity>> entry,
@Local boolean positionUpdated
) {
if (positionUpdated) {
ServerPlayer player = entry.getKey();
Expand Down

0 comments on commit 220e71d

Please sign in to comment.