2019-05-27 04:13:41 -05:00
|
|
|
From cdebeb72ea6b44cd8feb612a6b0d39301822a4f2 Mon Sep 17 00:00:00 2001
|
2016-09-21 23:49:27 -04: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
|
2019-05-27 04:13:41 -05:00
|
|
|
index ec1033f33..af803ae8a 100644
|
2016-09-21 23:49:27 -04:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityPlayer.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityPlayer.java
|
2019-05-05 19:58:04 -07:00
|
|
|
@@ -191,6 +191,7 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
|
2019-04-26 23:26:04 -07:00
|
|
|
@Override
|
2017-05-14 13:05:01 -05:00
|
|
|
public void a(NBTTagCompound nbttagcompound) {
|
|
|
|
super.a(nbttagcompound);
|
2016-09-23 17:25:21 -05:00
|
|
|
+ if (this.locY > 300) this.locY = 257; // Paper - bring down to a saner Y level if out of world
|
2017-05-14 13:05:01 -05:00
|
|
|
if (nbttagcompound.hasKeyOfType("playerGameType", 99)) {
|
2019-04-26 23:26:04 -07:00
|
|
|
if (this.getMinecraftServer().getForceGamemode()) {
|
|
|
|
this.playerInteractManager.setGameMode(this.getMinecraftServer().getGamemode());
|
2016-09-21 23:49:27 -04:00
|
|
|
--
|
2019-04-22 22:36:14 +01:00
|
|
|
2.21.0
|
2016-09-21 23:49:27 -04:00
|
|
|
|