might as well

This commit is contained in:
Leijurv 2018-09-23 08:58:45 -07:00
parent cc01c88dbd
commit b20f148fa6
No known key found for this signature in database
GPG Key ID: 44A3EA646EADAC6A

View File

@ -85,7 +85,7 @@ public final class PathNode {
*/
@Override
public int hashCode() {
return (x * 935847 + y) * 239761 + z;
return (int) AbstractNodeCostSearch.posHash(x, y, z);
}
@Override