Paper/Spigot-Server-Patches/0159-Auto-fix-bad-Y-levels-on-player-login.patch

23 lines
871 B
Diff
Raw Normal View History

2017-05-04 23:08:52 +00:00
From d457b6a577beb04924db4c75c5bb610a7cad5172 Mon Sep 17 00:00:00 2001
From: Aikar <aikar@aikar.co>
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
2017-04-29 00:25:52 +00:00
index 55c966811..eca224bdb 100644
--- a/src/main/java/net/minecraft/server/EntityPlayer.java
+++ b/src/main/java/net/minecraft/server/EntityPlayer.java
2017-04-29 00:25:52 +00:00
@@ -131,6 +131,7 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
}
}
+ if (this.locY > 300) this.locY = 257; // Paper - bring down to a saner Y level if out of world
this.getBukkitEntity().readExtraData(nbttagcompound); // CraftBukkit
}
--
2017-05-04 23:08:52 +00:00
2.12.2