mirror of
https://github.com/Winds-Studio/Leaf.git
synced 2025-12-19 15:09:25 +00:00
39 lines
1.8 KiB
Diff
39 lines
1.8 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: nostalgic853 <yuu8583@proton.me>
|
|
Date: Sat, 22 Oct 2022 09:58:38 +0800
|
|
Subject: [PATCH] Mirai: Fast speed check
|
|
|
|
Original license: GPL v3
|
|
Original project: https://github.com/etil2jz/Mirai
|
|
|
|
Original code by NFT-Worlds, licensed under GNU General Public License v3.0
|
|
You can find the original code on https://github.com/NFT-Worlds/Server
|
|
|
|
This patch was took from Mirai. (https://github.com/etil2jz/Mirai)
|
|
|
|
etil2jz's note:
|
|
NFT-Worlds is related to Stellar devs, known for countless paid forks mostly taking open source patches,
|
|
doing questionable/buggy ones, and claiming breathtaking performance improvements. Never ever pay for
|
|
any of those Spigot forks!
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/Entity.java b/src/main/java/net/minecraft/world/entity/Entity.java
|
|
index 3961f66a23508089df8c4ee7455e170cb870e9d0..fc6d90ec2e12cf5d12c6c0d9a45947218185ef3e 100644
|
|
--- a/src/main/java/net/minecraft/world/entity/Entity.java
|
|
+++ b/src/main/java/net/minecraft/world/entity/Entity.java
|
|
@@ -1194,7 +1194,14 @@ public abstract class Entity implements Nameable, EntityAccess, CommandSource {
|
|
}
|
|
|
|
this.tryCheckInsideBlocks();
|
|
- float f2 = this.getBlockSpeedFactor();
|
|
+ // KeYi start - Fast speed check
|
|
+ float f2;
|
|
+ if (this.getDeltaMovement().x == 0 && this.getDeltaMovement().z == 0) {
|
|
+ f2 = 1;
|
|
+ } else {
|
|
+ f2 = this.getBlockSpeedFactor();
|
|
+ }
|
|
+ // KeYi end
|
|
|
|
this.setDeltaMovement(this.getDeltaMovement().multiply((double) f2, 1.0D, (double) f2));
|
|
// Paper start - remove expensive streams from here
|