2020-01-22 22:01:28 +01:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Shane Freeder <theboyetronic@gmail.com>
|
|
|
|
Date: Wed, 22 Jan 2020 21:00:21 +0000
|
|
|
|
Subject: [PATCH] Fix comparator behavior for EntityPhanton goal
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityPhantom.java b/src/main/java/net/minecraft/server/EntityPhantom.java
|
2020-05-06 11:22:03 +02:00
|
|
|
index 82323bf4acc..90eeddb1af5 100644
|
2020-01-22 22:01:28 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityPhantom.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityPhantom.java
|
|
|
|
@@ -0,0 +0,0 @@ public class EntityPhantom extends EntityFlying implements IMonster {
|
|
|
|
|
|
|
|
if (!list.isEmpty()) {
|
|
|
|
list.sort((entityhuman, entityhuman1) -> {
|
|
|
|
- return entityhuman.locY() > entityhuman1.locY() ? -1 : 1;
|
|
|
|
+ return Double.compare(entityhuman1.locY(), entityhuman.locY()); // Paper
|
|
|
|
});
|
|
|
|
Iterator iterator = list.iterator();
|
|
|
|
|
|
|
|
--
|