2018-01-11 06:31:19 +01:00
|
|
|
From 66b8a2dadd2f607d504a81db0487888174f25344 Mon Sep 17 00:00:00 2001
|
2016-09-22 05:49:27 +02:00
|
|
|
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
|
2018-01-11 06:31:19 +01:00
|
|
|
index ef081a57..45618017 100644
|
2016-09-22 05:49:27 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityPlayer.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityPlayer.java
|
2017-05-31 10:04:52 +02:00
|
|
|
@@ -131,6 +131,7 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
|
2016-09-22 05:49:27 +02:00
|
|
|
|
2017-05-14 20:05:01 +02:00
|
|
|
public void a(NBTTagCompound nbttagcompound) {
|
|
|
|
super.a(nbttagcompound);
|
2016-09-24 00:25:21 +02:00
|
|
|
+ if (this.locY > 300) this.locY = 257; // Paper - bring down to a saner Y level if out of world
|
2017-05-14 20:05:01 +02:00
|
|
|
if (nbttagcompound.hasKeyOfType("playerGameType", 99)) {
|
|
|
|
if (this.C_().getForceGamemode()) {
|
|
|
|
this.playerInteractManager.setGameMode(this.C_().getGamemode());
|
2016-09-22 05:49:27 +02:00
|
|
|
--
|
2018-01-11 06:31:19 +01:00
|
|
|
2.14.3
|
2016-09-22 05:49:27 +02:00
|
|
|
|