Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-15 12:30:06 +01:00
f63e3dd135
Vanilla allows this now for same world teleports Fixes #3735
29 Zeilen
1.2 KiB
Diff
29 Zeilen
1.2 KiB
Diff
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
|
|
index ea61a473d8e47428ed5cd4541a5855f0e2c50815..ce239d2b2fe942915aa093b86343c3740d10e273 100644
|
|
--- a/src/main/java/net/minecraft/server/TileEntityEndGateway.java
|
|
+++ b/src/main/java/net/minecraft/server/TileEntityEndGateway.java
|
|
@@ -62,10 +62,14 @@ public class TileEntityEndGateway extends TileEntityEnderPortal implements ITick
|
|
--this.c;
|
|
} else if (!this.world.isClientSide) {
|
|
List<Entity> list = this.world.a(Entity.class, new AxisAlignedBB(this.getPosition()));
|
|
-
|
|
- if (!list.isEmpty()) {
|
|
- this.a((Entity) list.get(this.world.random.nextInt(list.size())));
|
|
+ // Paper start
|
|
+ for (Entity entity : list) {
|
|
+ if (entity.canPortal()) {
|
|
+ this.a(entity);
|
|
+ break;
|
|
+ }
|
|
}
|
|
+ // Paper end
|
|
|
|
if (this.age % 2400L == 0L) {
|
|
this.h();
|