2020-05-16 10:31:26 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: kickash32 <kickash32@gmail.com>
|
|
|
|
Date: Fri, 15 May 2020 01:10:03 -0400
|
|
|
|
Subject: [PATCH] Ensure safe gateway teleport
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/TileEntityEndGateway.java b/src/main/java/net/minecraft/server/TileEntityEndGateway.java
|
2020-11-03 03:22:15 +01:00
|
|
|
index 5550fd9ea6bcae07dcdf431322cb0da0b26a6d71..e0118a971e1ea3c52a1380f519146b8f46a425ea 100644
|
2020-05-16 10:31:26 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/TileEntityEndGateway.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/TileEntityEndGateway.java
|
2020-08-25 04:22:08 +02:00
|
|
|
@@ -63,9 +63,14 @@ public class TileEntityEndGateway extends TileEntityEnderPortal implements ITick
|
2020-05-16 10:31:26 +02:00
|
|
|
} else if (!this.world.isClientSide) {
|
2020-08-25 04:22:08 +02:00
|
|
|
List<Entity> list = this.world.a(Entity.class, new AxisAlignedBB(this.getPosition()), TileEntityEndGateway::a);
|
|
|
|
|
2020-05-16 10:31:26 +02:00
|
|
|
- if (!list.isEmpty()) {
|
2020-08-25 04:22:08 +02:00
|
|
|
- this.b((Entity) list.get(this.world.random.nextInt(list.size())));
|
2020-06-26 03:58:00 +02:00
|
|
|
+ // Paper start
|
|
|
|
+ for (Entity entity : list) {
|
2020-07-01 11:42:22 +02:00
|
|
|
+ if (entity.canPortal()) {
|
2020-08-25 04:22:08 +02:00
|
|
|
+ this.b(entity);
|
2020-06-26 03:58:00 +02:00
|
|
|
+ break;
|
2020-05-16 10:31:26 +02:00
|
|
|
+ }
|
2020-06-26 03:58:00 +02:00
|
|
|
}
|
|
|
|
+ // Paper end
|
2020-05-16 10:31:26 +02:00
|
|
|
|
|
|
|
if (this.age % 2400L == 0L) {
|
|
|
|
this.h();
|