mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-08 03:22:19 +01:00
93cbf5e356
Fix #1501 I just added a condition check to not start a new pathfinder goal if the turtle already has one set. Needs more testing. ![Timings Comparison](https://i.imgur.com/p9eJQSo.png)
28 lines
No EOL
1.1 KiB
Diff
28 lines
No EOL
1.1 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: BillyGalbreath <Blake.Galbreath@GMail.com>
|
|
Date: Fri, 28 Sep 2018 12:27:54 -0500
|
|
Subject: [PATCH] Fix turtle lag
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityTurtle.java b/src/main/java/net/minecraft/server/EntityTurtle.java
|
|
index 1b09f577e..b515eeb23 100644
|
|
--- a/src/main/java/net/minecraft/server/EntityTurtle.java
|
|
+++ b/src/main/java/net/minecraft/server/EntityTurtle.java
|
|
@@ -0,0 +0,0 @@ public class EntityTurtle extends EntityAnimal {
|
|
this.datawatcher.set(EntityTurtle.bI, Boolean.valueOf(flag));
|
|
}
|
|
|
|
+ private boolean isTravelling() { return dI(); } // Paper - OBFHELPER
|
|
private boolean dI() {
|
|
return ((Boolean) this.datawatcher.get(EntityTurtle.bJ)).booleanValue();
|
|
}
|
|
@@ -0,0 +0,0 @@ public class EntityTurtle extends EntityAnimal {
|
|
}
|
|
|
|
public boolean a() {
|
|
- return !this.a.dH() && !this.a.dy() && this.a.isInWater();
|
|
+ return !this.a.isTravelling() && !this.a.dH() && !this.a.dy() && this.a.isInWater(); // Paper
|
|
}
|
|
|
|
public void c() {
|
|
--
|