Skip to content

Commit

Permalink
Fix previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
NGSpace committed Sep 9, 2024
1 parent ee4e5fd commit 7bad952
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Empty file modified gradlew
100644 → 100755
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
import io.github.ngspace.hudder.mixin.WorldRendererAccess;
import net.minecraft.client.MinecraftClient;
import net.minecraft.client.render.WorldRenderer;
import net.minecraft.entity.Entity;
import net.minecraft.entity.player.PlayerEntity;
import net.minecraft.entity.player.PlayerInventory;
import net.minecraft.item.ItemStack;
Expand Down Expand Up @@ -100,7 +101,7 @@ public static Double getNumber(String key) {
// I know, I am soooo funny.
Entity veachol = p.getVehicle() == null ? p : p.getVehicle();
//IDK how acurate this number is, I just wanted to reach the official
yield veachol.getVelocity().length() * 36.65;
yield veachol.getVelocity().horizontalLength() * 36.65;
}


Expand Down

0 comments on commit 7bad952

Please sign in to comment.