2020-05-06 05:48:49 -04:00
|
|
|
From 0000000000000000000000000000000000000000 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
|
2020-08-24 22:22:08 -04:00
|
|
|
index a4252ef2d5fcd66b47c87fc904f9dac5c4402724..5f8d7d71886de1e1dec23453d4e9a72000661cc5 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
|
2020-08-24 22:22:08 -04:00
|
|
|
@@ -205,6 +205,7 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
|
2019-04-26 23:26:04 -07:00
|
|
|
@Override
|
2020-06-25 05:04:34 -07:00
|
|
|
public void loadData(NBTTagCompound nbttagcompound) {
|
|
|
|
super.loadData(nbttagcompound);
|
2019-12-12 19:45:00 +01:00
|
|
|
+ if (this.locY() > 300) this.setPositionRaw(locX(), 257, locZ()); // 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()) {
|
2020-06-25 05:04:34 -07:00
|
|
|
this.playerInteractManager.a(this.getMinecraftServer().getGamemode(), EnumGamemode.NOT_SET);
|