From d3eb13d60dad0ea895ea8eef73216dae955a3fba Mon Sep 17 00:00:00 2001 From: Aikar Date: Wed, 21 Sep 2016 23:49:27 -0400 Subject: [PATCH] Auto fix bad Y levels on player login Bring down to a saner Y level if super high, as this can cause the server to crash --- ...uto-fix-bad-Y-levels-on-player-login.patch | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Spigot-Server-Patches/0176-Auto-fix-bad-Y-levels-on-player-login.patch diff --git a/Spigot-Server-Patches/0176-Auto-fix-bad-Y-levels-on-player-login.patch b/Spigot-Server-Patches/0176-Auto-fix-bad-Y-levels-on-player-login.patch new file mode 100644 index 000000000..81530fa9f --- /dev/null +++ b/Spigot-Server-Patches/0176-Auto-fix-bad-Y-levels-on-player-login.patch @@ -0,0 +1,22 @@ +From 6b3da1efe41b0866848a471f85b31481ec0e55fc Mon Sep 17 00:00:00 2001 +From: Aikar +Date: Wed, 21 Sep 2016 23:48:39 -0400 +Subject: [PATCH] Auto fix bad Y levels on player login + +Bring down to a saner Y level if super high, as this can cause the server to crash + +diff --git a/src/main/java/net/minecraft/server/EntityPlayer.java b/src/main/java/net/minecraft/server/EntityPlayer.java +index ec3a60a..5db0051 100644 +--- a/src/main/java/net/minecraft/server/EntityPlayer.java ++++ b/src/main/java/net/minecraft/server/EntityPlayer.java +@@ -126,6 +126,7 @@ public class EntityPlayer extends EntityHuman implements ICrafting { + } + } + ++ if (this.locY > 300) this.locY = 200; // Paper - bring down to a saner Y level if out of world + this.getBukkitEntity().readExtraData(nbttagcompound); // CraftBukkit + } + +-- +2.9.3 +