mirror of
https://github.com/Pumpkin-MC/Pumpkin.git
synced 2026-08-30 20:14:23 +00:00
The rest of the pathfinder already uses rustc-hash's FxHashMap/FxHashSet, but compute_path's closed_set, the path-reconstruction visited set, and the Navigator's path_type_overrides were still on the default SipHash hasher. Switch them to FxHashMap/FxHashSet for consistency and to shave hashing off the per-repath hot path. Keys are Vector3<i32>/PathType (small, internal). No new dependency and no behavior change.