2019-10-26 22:55:58 +00:00
From 93ed3640c7b66d82bcdc6bec457caf6a5905af54 Mon Sep 17 00:00:00 2001
2018-04-30 21:21:59 +00:00
From: Aikar <aikar@aikar.co>
Date: Mon, 30 Apr 2018 17:15:26 -0400
Subject: [PATCH] Block Enderpearl Travel Exploit
Players are able to use alt accounts and enderpearls to travel
long distances utilizing the pearls in unloaded chunks and loading
the chunk later when convenient.
This disables that by not saving the thrower when the chunk is unloaded.
This is mainly useful for survival servers that do not allow freeform teleporting.
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
2019-10-26 22:55:58 +00:00
index c57f7e7e8..cb8922329 100644
2018-04-30 21:21:59 +00:00
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
2019-10-26 22:55:58 +00:00
@@ -359,4 +359,10 @@ public class PaperWorldConfig {
2018-07-18 18:55:52 +00:00
private void disableSprintInterruptionOnAttack() {
disableSprintInterruptionOnAttack = getBoolean("game-mechanics.disable-sprint-interruption-on-attack", false);
2018-04-30 21:21:59 +00:00
}
+
+ public boolean disableEnderpearlExploit = true;
+ private void disableEnderpearlExploit() {
+ disableEnderpearlExploit = getBoolean("game-mechanics.disable-unloaded-chunk-enderpearl-exploit", disableEnderpearlExploit);
+ log("Disable Unloaded Chunk Enderpearl Exploit: " + (disableEnderpearlExploit ? "enabled" : "disabled"));
+ }
}
diff --git a/src/main/java/net/minecraft/server/EntityProjectile.java b/src/main/java/net/minecraft/server/EntityProjectile.java
2019-10-26 22:55:58 +00:00
index 5f0cb4c33..f2f4b2d92 100644
2018-04-30 21:21:59 +00:00
--- a/src/main/java/net/minecraft/server/EntityProjectile.java
+++ b/src/main/java/net/minecraft/server/EntityProjectile.java
2019-04-29 03:14:31 +00:00
@@ -205,6 +205,7 @@ public abstract class EntityProjectile extends Entity implements IProjectile {
2018-07-18 18:55:52 +00:00
if (nbttagcompound.hasKeyOfType("owner", 10)) {
this.shooterId = GameProfileSerializer.b(nbttagcompound.getCompound("owner"));
2018-04-30 21:21:59 +00:00
}
2018-07-19 04:42:43 +00:00
+ if (this instanceof EntityEnderPearl && this.world != null && this.world.paperConfig.disableEnderpearlExploit) { this.shooterId = null; } // Paper - Don't store shooter name for pearls to block enderpearl travel exploit
2018-04-30 21:21:59 +00:00
}
2018-07-18 18:55:52 +00:00
2018-04-30 21:21:59 +00:00
--
2019-10-26 22:55:58 +00:00
2.23.0
2018-04-30 21:21:59 +00:00