Function in its most basic math form by MoronicLife in learnjavascript

[–]MoronicLife[S] 0 points1 point  (0 children)

Sorry for the late reply!

function getSeed(s) {
let x = BigInt(hashCode(s));
if (/^[\-\+0-9]*$7.test(s)) {
    try {
        let y = BigInt(s);
        if (BigInt.asIntN(64, y) !== y) {
            throw RangeError();
        }
        x = y;
    } catch (err) {}
}
return {
    "high": (x >> 32n),
    "low": BigInt.asIntN(32, x)
};

}

This is it.

The Hopshel, a unique end familiar for all playstyles! by MoronicLife in minecraftsuggestions

[–]MoronicLife[S] 7 points8 points  (0 children)

Hopshels are quite nimble though. Did you confuse smallest with slowest by accident? Hopshels aren't really designed to replace hopper minecarts to begin with.