2019-04-05 07:27:37 +02:00
|
|
|
From 943089e6e5db3579fee6d6cd09d4e3f45badf674 Mon Sep 17 00:00:00 2001
|
2016-03-01 00:09:49 +01:00
|
|
|
From: Joseph Hirschfeld <joe@ibj.io>
|
|
|
|
Date: Thu, 3 Mar 2016 02:46:17 -0600
|
|
|
|
Subject: [PATCH] Add configurable portal search radius
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2019-04-05 07:27:37 +02:00
|
|
|
index 05d2d50e5..313712878 100644
|
2016-03-01 00:09:49 +01:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2019-04-05 07:27:37 +02:00
|
|
|
@@ -194,4 +194,9 @@ public class PaperWorldConfig {
|
2016-08-28 01:41:58 +02:00
|
|
|
private void allChunksAreSlimeChunks() {
|
|
|
|
allChunksAreSlimeChunks = getBoolean("all-chunks-are-slime-chunks", false);
|
2016-03-01 00:09:49 +01:00
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public int portalSearchRadius;
|
|
|
|
+ private void portalSearchRadius() {
|
|
|
|
+ portalSearchRadius = getInt("portal-search-radius", 128);
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/PortalTravelAgent.java b/src/main/java/net/minecraft/server/PortalTravelAgent.java
|
2019-04-05 06:52:02 +02:00
|
|
|
index b911d830a..aca407142 100644
|
2016-03-01 00:09:49 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/PortalTravelAgent.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/PortalTravelAgent.java
|
2018-07-15 03:53:17 +02:00
|
|
|
@@ -13,7 +13,7 @@ import org.bukkit.util.Vector;
|
2016-03-07 22:54:14 +01:00
|
|
|
public class PortalTravelAgent {
|
2016-03-01 00:09:49 +01:00
|
|
|
|
2018-07-15 03:53:17 +02:00
|
|
|
private static final BlockPortal a = (BlockPortal) Blocks.NETHER_PORTAL;
|
2016-03-07 22:54:14 +01:00
|
|
|
- private final WorldServer world;
|
2018-07-15 03:53:17 +02:00
|
|
|
+ public final WorldServer world; // Paper - private -> public
|
|
|
|
private final Random c;
|
|
|
|
private final Long2ObjectMap<PortalTravelAgent.ChunkCoordinatesPortal> d = new Long2ObjectOpenHashMap(4096);
|
2016-05-12 04:07:46 +02:00
|
|
|
|
2018-07-15 03:53:17 +02:00
|
|
|
@@ -93,7 +93,7 @@ public class PortalTravelAgent {
|
2016-03-07 22:54:14 +01:00
|
|
|
|
|
|
|
public boolean b(Entity entity, float f) {
|
|
|
|
// CraftBukkit start - Modularize portal search process and entity teleportation
|
|
|
|
- BlockPosition found = this.findPortal(entity.locX, entity.locY, entity.locZ, 128);
|
|
|
|
+ BlockPosition found = this.findPortal(entity.locX, entity.locY, entity.locZ, world.paperConfig.portalSearchRadius); // Paper - Configurable search radius
|
|
|
|
if (found == null) {
|
|
|
|
return false;
|
2016-03-01 00:09:49 +01:00
|
|
|
}
|
2016-03-07 22:54:14 +01:00
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/CraftTravelAgent.java b/src/main/java/org/bukkit/craftbukkit/CraftTravelAgent.java
|
2019-04-05 06:52:02 +02:00
|
|
|
index d4639c822..e1eb3aa0f 100644
|
2016-03-07 22:54:14 +01:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/CraftTravelAgent.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/CraftTravelAgent.java
|
2018-08-26 20:11:49 +02:00
|
|
|
@@ -12,7 +12,7 @@ public class CraftTravelAgent extends PortalTravelAgent implements TravelAgent {
|
2016-03-07 22:54:14 +01:00
|
|
|
|
|
|
|
public static TravelAgent DEFAULT = null;
|
2016-03-01 00:09:49 +01:00
|
|
|
|
2016-03-07 22:54:14 +01:00
|
|
|
- private int searchRadius = 128;
|
|
|
|
+ private int searchRadius = world.paperConfig.portalSearchRadius; // Paper - Configurable search radius
|
|
|
|
private int creationRadius = 16;
|
|
|
|
private boolean canCreatePortal = true;
|
2016-03-01 00:09:49 +01:00
|
|
|
|
|
|
|
--
|
2019-04-05 06:52:02 +02:00
|
|
|
2.21.0
|
2016-03-01 00:09:49 +01:00
|
|
|
|