2017-03-25 06:22:02 +01:00
|
|
|
From adea9822f254f16ea903bfcf4a929946a6879cd0 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
|
2017-03-25 04:18:58 +01:00
|
|
|
index ab7e81a0d..4cc74cd65 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
|
2017-03-25 04:18:58 +01:00
|
|
|
@@ -234,4 +234,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
|
2017-03-25 04:18:58 +01:00
|
|
|
index 4455c2c43..fbf7cff24 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
|
2016-05-12 04:07:46 +02:00
|
|
|
@@ -12,7 +12,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
|
|
|
|
2016-03-07 22:54:14 +01:00
|
|
|
- private final WorldServer world;
|
|
|
|
+ protected final WorldServer world; // Paper - private -> protected
|
|
|
|
private final Random b;
|
2016-05-12 04:07:46 +02:00
|
|
|
private final Long2ObjectMap<PortalTravelAgent.ChunkCoordinatesPortal> c = new Long2ObjectOpenHashMap(4096);
|
|
|
|
|
2016-03-07 22:54:14 +01:00
|
|
|
@@ -92,7 +92,7 @@ public class PortalTravelAgent {
|
|
|
|
|
|
|
|
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
|
2017-03-25 04:18:58 +01:00
|
|
|
index 1d5dce10e..7ca2617a8 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
|
|
|
|
@@ -11,7 +11,7 @@ public class CraftTravelAgent extends PortalTravelAgent implements TravelAgent {
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
--
|
2017-03-25 04:18:58 +01:00
|
|
|
2.12.0.windows.1
|
2016-03-01 00:09:49 +01:00
|
|
|
|