Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ public boolean canControl() {
@NotNull
@Override
public Vector3f move(@NotNull Player player, @NotNull LivingEntity entity, @NotNull Vector3f input, @NotNull Vector3f travelVector) {
input.normalize();
input.y = 0;
input.x = input.x * 0.5F;
if (input.z <= 0.0F) {
Expand All @@ -67,6 +68,7 @@ public Vector3f move(@NotNull Player player, @NotNull LivingEntity entity, @NotN
@NotNull
@Override
public Vector3f move(@NotNull Player player, @NotNull LivingEntity entity, @NotNull Vector3f input, @NotNull Vector3f travelVector) {
input.normalize();
input.x = input.x * 0.5F;
if (input.z <= 0.0F) {
input.z *= 0.25F;
Expand Down