Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature Request] Slow down boat speed #23

Open
MinecraftGuy926 opened this issue Aug 3, 2024 · 0 comments
Open

[Feature Request] Slow down boat speed #23

MinecraftGuy926 opened this issue Aug 3, 2024 · 0 comments
Labels
enhancement New feature or request

Comments

@MinecraftGuy926
Copy link

Feature Description

If I wanted to make the boat go slower do I just need to change this somehow? I don't know how to code, but say I want it to go half as fast as it currently does

}

        Vec3 vector3d = this.getDeltaMovement();
        this.setDeltaMovement(vector3d.x * (double)this.invFriction, vector3d.y + d1, vector3d.z * (double)this.invFriction);
        this.deltaRotation *= this.invFriction;
        if (d2 > 0.0D) {
            Vec3 vector3d1 = this.getDeltaMovement();
            this.setDeltaMovement(vector3d1.x, (vector3d1.y + d2 * 0.06153846016296973D) * 0.75D, vector3d1.z);
        }
    }

}
@MinecraftGuy926 MinecraftGuy926 added the enhancement New feature or request label Aug 3, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant