Skip to content

Commit

Permalink
fix sync of visited nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
Raycoms committed Mar 24, 2024
1 parent 5c4cb3b commit b0d9e21
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class SyncPathReachedMessage extends AbstractClientPlayMessage
public SyncPathReachedMessage(final Set<BlockPos> reached)
{
super(TYPE);
this.reached = reached;
this.reached = new HashSet<>(reached);
}

@Override
Expand Down

0 comments on commit b0d9e21

Please # to comment.